結果
問題 | No.36 素数が嫌い! |
ユーザー | yomo3 |
提出日時 | 2020-03-01 16:55:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 802 ms / 5,000 ms |
コード長 | 772 bytes |
コンパイル時間 | 114 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-13 20:44:14 |
合計ジャッジ時間 | 4,900 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 204 ms
10,752 KB |
testcase_01 | AC | 46 ms
10,496 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | AC | 26 ms
10,752 KB |
testcase_04 | AC | 27 ms
10,624 KB |
testcase_05 | AC | 28 ms
10,752 KB |
testcase_06 | AC | 28 ms
10,624 KB |
testcase_07 | AC | 28 ms
10,752 KB |
testcase_08 | AC | 26 ms
10,752 KB |
testcase_09 | AC | 26 ms
10,752 KB |
testcase_10 | AC | 26 ms
10,624 KB |
testcase_11 | AC | 283 ms
10,752 KB |
testcase_12 | AC | 802 ms
10,752 KB |
testcase_13 | AC | 801 ms
10,624 KB |
testcase_14 | AC | 29 ms
10,624 KB |
testcase_15 | AC | 26 ms
10,752 KB |
testcase_16 | AC | 25 ms
10,752 KB |
testcase_17 | AC | 25 ms
10,624 KB |
testcase_18 | AC | 26 ms
10,752 KB |
testcase_19 | AC | 62 ms
10,624 KB |
testcase_20 | AC | 55 ms
10,752 KB |
testcase_21 | AC | 131 ms
10,496 KB |
testcase_22 | AC | 38 ms
10,752 KB |
testcase_23 | AC | 32 ms
10,624 KB |
testcase_24 | AC | 138 ms
10,752 KB |
testcase_25 | AC | 163 ms
10,496 KB |
testcase_26 | AC | 299 ms
10,496 KB |
testcase_27 | AC | 42 ms
10,752 KB |
testcase_28 | AC | 300 ms
10,624 KB |
testcase_29 | AC | 32 ms
10,624 KB |
ソースコード
def chk(n): if n == 1: return False f = [] c = 0 while n % 2 == 0: n //= 2 c += 1 if c >= 3: return True if c > 0: f.append([2, c]) p = 3 while p * p <= n: if n % p == 0: c = 0 while n % p == 0: n //= p c += 1 if c >= 3: return True if c > 0: f.append([p, c]) if len(f) >= 3: return True if len(f) == 2 and any(x!=1 for _,x in f): return True p += 2 if n != 1: f.append([n, 1]) if len(f) >= 3: return True if len(f) == 2 and any(x!=1 for _,x in f): return True return False N = int(input()) f = chk(N) print('YES' if f else 'NO')