結果
問題 | No.1955 Not Prime |
ユーザー | H20 |
提出日時 | 2022-03-30 21:44:15 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 855 bytes |
コンパイル時間 | 382 ms |
コンパイル使用メモリ | 81,860 KB |
実行使用メモリ | 183,012 KB |
最終ジャッジ日時 | 2024-12-21 07:30:33 |
合計ジャッジ時間 | 44,919 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
97,028 KB |
testcase_01 | AC | 98 ms
182,888 KB |
testcase_02 | AC | 98 ms
92,772 KB |
testcase_03 | AC | 101 ms
181,828 KB |
testcase_04 | AC | 100 ms
91,672 KB |
testcase_05 | AC | 99 ms
182,548 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 128 ms
103,908 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 191 ms
103,948 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 98 ms
85,908 KB |
testcase_23 | AC | 102 ms
85,104 KB |
testcase_24 | AC | 109 ms
89,788 KB |
testcase_25 | AC | 104 ms
183,012 KB |
ソースコード
def sieve(n): is_prime = [True for _ in range(n+1)] is_prime[0] = False for i in range(2, n+1): if is_prime[i-1]: j = i * i while j <= n: is_prime[j-1] = False j += i table = [ i for i in range(1, n+1) if is_prime[i-1]] return [False]+is_prime, table N = int(input()) AB = [list(input().split()) for _ in range(N)] TABLE,_ = sieve(10**6) for i in range(2 ** N): S = [] T = [] for j in range(N): if ((i >> j) & 1): T.append(AB[j][0]) S.append(AB[j][1]) else: T.append(AB[j][1]) S.append(AB[j][0]) f = True for j in range(N): for k in range(N): if TABLE[int(str(S[j])+str(T[k]))]: f=False if f: print('Yes') exit() print('No')