結果
問題 |
No.36 素数が嫌い!
|
ユーザー |
![]() |
提出日時 | 2019-11-05 21:58:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 152 bytes |
コンパイル時間 | 139 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-15 00:13:14 |
合計ジャッジ時間 | 6,233 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 WA * 7 |
ソースコード
N = int(input()) for n in range(2, int(N ** 0.5) + 1): if (N % n == 0) and (n != N // n): print('YES') break else: print('NO')