| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144186 | 谢尚昊 | 能否被3和5整除 | Python3 | Wrong Answer | 30 MS | 3728 KB | 132 | 2026-01-19 23:01:32 |
i=int(input())#对应量i从字符串input变为整数int if i%3!=0 and i%5!=0: print("不行") else: print("行")
------Input------
90
------Answer-----
can
------Your output-----