結果
問題 | No.774 tatyamと素数大富豪 |
ユーザー | 👑 rin204 |
提出日時 | 2022-03-25 18:42:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 269 ms / 2,000 ms |
コード長 | 1,101 bytes |
コンパイル時間 | 191 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 118,968 KB |
最終ジャッジ日時 | 2024-10-14 03:04:21 |
合計ジャッジ時間 | 2,923 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 269 ms
118,968 KB |
testcase_01 | AC | 42 ms
51,968 KB |
testcase_02 | AC | 40 ms
51,712 KB |
testcase_03 | AC | 81 ms
74,496 KB |
testcase_04 | AC | 40 ms
51,968 KB |
testcase_05 | AC | 40 ms
51,712 KB |
testcase_06 | AC | 40 ms
52,224 KB |
testcase_07 | AC | 40 ms
51,840 KB |
testcase_08 | AC | 40 ms
51,712 KB |
testcase_09 | AC | 101 ms
76,928 KB |
testcase_10 | AC | 44 ms
57,600 KB |
testcase_11 | AC | 68 ms
67,072 KB |
testcase_12 | AC | 249 ms
107,444 KB |
testcase_13 | AC | 165 ms
88,128 KB |
testcase_14 | AC | 80 ms
76,032 KB |
testcase_15 | AC | 98 ms
76,416 KB |
testcase_16 | AC | 81 ms
72,064 KB |
testcase_17 | AC | 41 ms
52,096 KB |
testcase_18 | AC | 74 ms
69,760 KB |
ソースコード
def isprime(n): if n <= 1: return False elif n == 2: return True elif n % 2 == 0: return False A = [2, 325, 9375, 28178, 450775, 9780504, 1795265022] s = 0 d = n - 1 while d % 2 == 0: s += 1 d >>= 1 for a in A: if a % n == 0: return True x = pow(a, d, n) if x != 1: for t in range(s): if x == n - 1: break x = x * x % n else: return False return True n = int(input()) A = list(map(int, input().split())) B = [0] * n for i in range(n): if A[i] < 10: B[i] = 10 else: B[i] = 100 ans = -1 used = [False] * n memo = set() def dfs(t, x): if t == n: global ans if x > ans and isprime(x): ans = x return if x in memo: return memo.add(x) for i in range(n): if not used[i]: used[i] = True dfs(t + 1, x * B[i] + A[i]) used[i] = False dfs(0, 0) print(ans)