結果
| 問題 |
No.36 素数が嫌い!
|
| コンテスト | |
| ユーザー |
togatoga
|
| 提出日時 | 2015-09-02 10:48:03 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 210 ms / 5,000 ms |
| コード長 | 170 bytes |
| コンパイル時間 | 1,875 ms |
| コンパイル使用メモリ | 76,928 KB |
| 実行使用メモリ | 76,928 KB |
| 最終ジャッジ日時 | 2024-06-27 00:25:42 |
| 合計ジャッジ時間 | 3,930 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 26 |
ソースコード
N = input()
cnt = 0
i = 2
while i * i <= N:
while (N % i == 0):
cnt += 1
N /= i
i += 1
if (N != 1):
cnt += 1
print "YES" if cnt > 2 else "NO"
togatoga