Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
304117 李南笙 【C2-1】输出是2的倍数,但非3的倍数的数 Python3 通过 100 134 MS 3792 KB 108 2024-12-13 20:07:36

Tests(3/3):


n =int(input()) for a in range(2,n+1): if a % 2==0 and a % 3!=0: print(a)


测评信息: