結果
問題 | No.1955 Not Prime |
ユーザー | H20 |
提出日時 | 2022-03-30 21:44:15 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 855 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 82,592 KB |
実行使用メモリ | 104,080 KB |
最終ジャッジ日時 | 2024-06-01 04:43:10 |
合計ジャッジ時間 | 4,573 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 103 ms
94,976 KB |
testcase_01 | AC | 93 ms
84,608 KB |
testcase_02 | AC | 94 ms
84,736 KB |
testcase_03 | AC | 101 ms
84,224 KB |
testcase_04 | AC | 94 ms
84,992 KB |
testcase_05 | AC | 95 ms
84,352 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
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')