結果
問題 | No.36 素数が嫌い! |
ユーザー |
![]() |
提出日時 | 2020-09-19 10:17:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 135 bytes |
コンパイル時間 | 574 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 58,916 KB |
最終ジャッジ日時 | 2024-06-23 07:20:09 |
合計ジャッジ時間 | 2,819 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 16 WA * 10 |
ソースコード
N=int(input()) for i in range(2,int(N**0.5)+2): if N%i==0: print("YES") exit() print("NO")