結果
問題 | No.36 素数が嫌い! |
ユーザー | しらっ亭 |
提出日時 | 2015-07-29 03:14:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 665 bytes |
コンパイル時間 | 169 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 111,580 KB |
最終ジャッジ日時 | 2024-07-17 21:50:20 |
合計ジャッジ時間 | 29,866 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1,813 ms
89,680 KB |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 32 ms
10,880 KB |
testcase_04 | AC | 31 ms
10,880 KB |
testcase_05 | AC | 36 ms
11,136 KB |
testcase_06 | AC | 36 ms
11,136 KB |
testcase_07 | AC | 37 ms
11,136 KB |
testcase_08 | AC | 33 ms
10,880 KB |
testcase_09 | AC | 36 ms
11,008 KB |
testcase_10 | WA | - |
testcase_11 | AC | 752 ms
44,312 KB |
testcase_12 | AC | 2,325 ms
111,580 KB |
testcase_13 | AC | 2,335 ms
111,368 KB |
testcase_14 | AC | 1,401 ms
73,936 KB |
testcase_15 | AC | 32 ms
10,752 KB |
testcase_16 | AC | 31 ms
10,880 KB |
testcase_17 | AC | 31 ms
10,880 KB |
testcase_18 | AC | 33 ms
11,008 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1,191 ms
64,560 KB |
testcase_25 | WA | - |
testcase_26 | AC | 1,390 ms
72,496 KB |
testcase_27 | AC | 2,026 ms
97,544 KB |
testcase_28 | AC | 1,398 ms
71,376 KB |
testcase_29 | AC | 2,270 ms
108,188 KB |
ソースコード
import bisect import math def mark(s, x): for i in range(x + x, len(s), x): s[i] = False def sieve(n): s = [True] * n for x in range(2, int(n ** 0.5) + 1): if s[x]: mark(s, x) return [i for i in range(n) if s[i] and i > 1] def solve(): N = int(input()) rtn = int(math.sqrt(N)) ps = sieve(rtn + 1) ys = [] i = 0 while i < len(ps): p = ps[i] d, m = divmod(N, p) if m == 0: ys.append(p) N = d else: i += 1 return len(ys) >= 3 def main(): print('YES' if solve() else 'NO') if __name__ == '__main__': main()