結果
| 問題 | No.36 素数が嫌い! |
| コンテスト | |
| ユーザー |
threepipes_s
|
| 提出日時 | 2015-12-30 01:31:10 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 182 bytes |
| 記録 | |
| コンパイル時間 | 579 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-07 17:42:13 |
| 合計ジャッジ時間 | 4,644 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 23 WA * 3 |
ソースコード
n = int(input())
i = 2
count = 0
m = n
while(i*i*i<=n):
while(m%i==0):
m /= i
count += 1
i+=1
if(m>1): count += 1
if(count>2): print("YES")
else: print("NO")
threepipes_s