結果
問題 |
No.36 素数が嫌い!
|
ユーザー |
|
提出日時 | 2021-12-31 21:20:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 114 bytes |
コンパイル時間 | 394 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 57,856 KB |
最終ジャッジ日時 | 2024-10-09 01:53:33 |
合計ジャッジ時間 | 2,864 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 17 WA * 9 |
ソースコード
n = int(input()) for i in range(2,int(n**0.5)+1): if n%i == 0: print("YES") exit() print("NO")