結果
問題 | No.774 tatyamと素数大富豪 |
ユーザー | maspy |
提出日時 | 2020-03-28 14:58:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 300 ms / 2,000 ms |
コード長 | 938 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 28,576 KB |
最終ジャッジ日時 | 2024-06-10 17:22:56 |
合計ジャッジ時間 | 3,917 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 293 ms
28,576 KB |
testcase_01 | AC | 28 ms
11,264 KB |
testcase_02 | AC | 208 ms
11,136 KB |
testcase_03 | AC | 32 ms
11,264 KB |
testcase_04 | AC | 28 ms
11,136 KB |
testcase_05 | AC | 28 ms
11,136 KB |
testcase_06 | AC | 28 ms
11,136 KB |
testcase_07 | AC | 28 ms
11,136 KB |
testcase_08 | AC | 27 ms
11,136 KB |
testcase_09 | AC | 300 ms
12,032 KB |
testcase_10 | AC | 214 ms
11,136 KB |
testcase_11 | AC | 218 ms
11,264 KB |
testcase_12 | AC | 266 ms
27,968 KB |
testcase_13 | AC | 279 ms
28,152 KB |
testcase_14 | AC | 68 ms
11,904 KB |
testcase_15 | AC | 219 ms
11,392 KB |
testcase_16 | AC | 236 ms
11,136 KB |
testcase_17 | AC | 217 ms
11,136 KB |
testcase_18 | AC | 217 ms
11,264 KB |
ソースコード
#!/usr/bin/ python3.8 import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines import itertools _, *A = map(int, read().split()) A_str = [str(x) for x in A] def gen_nums(): for p in itertools.permutations(A_str): yield int(''.join(p)) def MillerRabinTest(n, maxiter=10): import random if n == 1: return False elif n == 2: return True if not n & 1: return False d = n - 1 while not (d & 1): d >>= 1 for _ in range(maxiter): a = random.randint(1, n - 1) t = d x = pow(a, t, n) while (t != n - 1) and (x != 1) and (x != n - 1): x = x * x % n t <<= 1 if (x != n - 1) and not (t & 1): return False return True answer = -1 for p in set(gen_nums()): if answer < p and MillerRabinTest(p): answer = p print(answer)