結果
問題 |
No.36 素数が嫌い!
|
ユーザー |
|
提出日時 | 2021-03-08 10:18:58 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 110 bytes |
コンパイル時間 | 180 ms |
コンパイル使用メモリ | 81,844 KB |
実行使用メモリ | 53,808 KB |
最終ジャッジ日時 | 2024-10-09 19:29:49 |
合計ジャッジ時間 | 2,388 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 2 |
other | AC * 13 WA * 13 |
ソースコード
N=int(input()) for i in range(1,int(N**0.5)+2): if N%i==0: print("YES") exit() print("NO")