結果
問題 | No.36 素数が嫌い! |
ユーザー | しらっ亭 |
提出日時 | 2015-07-29 03:01:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 646 bytes |
コンパイル時間 | 312 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 111,568 KB |
最終ジャッジ日時 | 2024-07-17 21:48:01 |
合計ジャッジ時間 | 26,308 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 908 ms
58,160 KB |
testcase_01 | AC | 1,569 ms
89,576 KB |
testcase_02 | AC | 26 ms
10,880 KB |
testcase_03 | WA | - |
testcase_04 | AC | 28 ms
10,880 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 31 ms
11,392 KB |
testcase_08 | AC | 28 ms
11,008 KB |
testcase_09 | AC | 29 ms
11,008 KB |
testcase_10 | AC | 29 ms
11,136 KB |
testcase_11 | AC | 592 ms
44,380 KB |
testcase_12 | AC | 2,134 ms
111,568 KB |
testcase_13 | AC | 2,176 ms
111,512 KB |
testcase_14 | AC | 1,240 ms
73,868 KB |
testcase_15 | AC | 28 ms
10,880 KB |
testcase_16 | AC | 26 ms
10,880 KB |
testcase_17 | AC | 26 ms
10,880 KB |
testcase_18 | AC | 28 ms
10,880 KB |
testcase_19 | AC | 743 ms
50,808 KB |
testcase_20 | AC | 2,101 ms
111,344 KB |
testcase_21 | AC | 1,560 ms
88,308 KB |
testcase_22 | AC | 1,604 ms
90,716 KB |
testcase_23 | AC | 913 ms
59,148 KB |
testcase_24 | AC | 1,075 ms
64,500 KB |
testcase_25 | AC | 1,027 ms
63,556 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
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) for p in ps: d, m = divmod(N, p) if m == 0: i = bisect.bisect_left(ps, d) if i >= len(ps) or ps[i] != d: return True return False def main(): print('YES' if solve() else 'NO') if __name__ == '__main__': main()