NC249065. 蛋挞
描述
输入描述
一行两个正整数 。
输出描述
输出一行一个字符串,表示答案。
示例1
输入:
20 6
输出:
niuniu eats less than others
说明:
分蛋挞的每个人能吃到 个蛋挞,牛牛能吃到 个蛋挞。pypy3 解法, 执行用时: 80ms, 内存消耗: 40428K, 提交时间: 2023-05-08 19:41:47
a, b = map(int, input().split()) c = a // b d = a % b print("niuniu eats more than others" if d > c else "niuniu eats less than others" if c > d else "same")
Python3 解法, 执行用时: 42ms, 内存消耗: 4544K, 提交时间: 2023-03-24 21:33:02
a,b=map(int,input().split()) c=a//b d=a%b if(c==d):print("same") elif(c>d):print("niuniu eats less than others") else: print("niuniu eats more than others")