結果
問題 |
No.36 素数が嫌い!
|
ユーザー |
![]() |
提出日時 | 2024-04-30 16:38:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 219 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-20 13:25:53 |
合計ジャッジ時間 | 13,979 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 WA * 1 |
other | AC * 23 WA * 3 |
ソースコード
import sys n = int(input()) for i in range(1, int(n**0.5)+1): if n%i == 0 and i != 1 and i != n: for j in range(1, int(i**0.5)+1): if j != 1 and i%j == 0 and j != i: print("YES") sys.exit() print("NO")