Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
313407 123456 【C1-12】判断能否被3,5,7整除 Python3 通过 100 47 MS 3764 KB 163 2025-03-21 20:08:39

Tests(3/3):


x=int(input()) if x%3==0: print(3,end=' ') if x%5==0: print(5,end=' ') if x%7==0: print(7,end='') if x%3 and x%5 and x%7: print('n',end='')


测评信息: