結果
| 問題 |
No.8023 素数判定するだけ
|
| コンテスト | |
| ユーザー |
graythunder1
|
| 提出日時 | 2019-06-28 21:41:12 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 126 bytes |
| コンパイル時間 | 94 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-07-02 04:31:09 |
| 合計ジャッジ時間 | 5,564 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 WA * 1 |
ソースコード
N = int(input())
ans = "YES"
two = "aa".count('a')
for n in range(two, N):
if not bool(N % n): ans = "NO"
print(ans)
graythunder1