結果
| 問題 |
No.36 素数が嫌い!
|
| コンテスト | |
| ユーザー |
AEn
|
| 提出日時 | 2022-05-15 11:13:33 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 460 bytes |
| コンパイル時間 | 333 ms |
| コンパイル使用メモリ | 82,472 KB |
| 実行使用メモリ | 59,932 KB |
| 最終ジャッジ日時 | 2024-07-26 13:02:44 |
| 合計ジャッジ時間 | 4,207 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 19 WA * 7 |
ソースコード
def factorization(n):
arr = []
temp = n
for i in range(2, int(-(-n**0.5//1))+1):
if temp%i==0:
cnt=0
while temp%i==0:
cnt+=1
temp //= i
arr.append([i, cnt])
if temp!=1:
arr.append([temp, 1])
if arr==[]:
arr.append([n, 1])
return arr
N = int(input())
a = factorization(N)
if len(a) == 1 and a[0][1] <= 2:
print('NO')
else:
print('YES')
AEn