列表

详情


NC249065. 蛋挞

描述

a 个蛋挞,分给 b 个人,使得每个人分得蛋挞数量一样且尽量多。这样会导致可能有一些蛋挞没被分走,导致浪费,于是牛牛准备回收这些蛋挞并一口吃下全部。牛牛想知道是自己吃的多还是分蛋挞的每个人吃得多?

如果牛牛吃得多,输出 "niuniu eats more than others",如果分蛋挞的每个人吃得多,输出 "niuniu eats less than others",如果一样多输出 "same"(均不含引号)。

输入描述

一行两个正整数 a,b(1\le a,b\le 10^{16})

输出描述

输出一行一个字符串,表示答案。

示例1

输入:

20 6

输出:

niuniu eats less than others

说明:

分蛋挞的每个人能吃到 3 个蛋挞,牛牛能吃到 2 个蛋挞。

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

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")

上一题