結果
問題 | No.1632 Sorting Integers (GCD of M) |
ユーザー | 👑 rin204 |
提出日時 | 2023-12-20 22:58:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 846 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 54,952 KB |
最終ジャッジ日時 | 2024-09-27 10:14:11 |
合計ジャッジ時間 | 4,017 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,452 KB |
testcase_01 | AC | 36 ms
53,264 KB |
testcase_02 | AC | 37 ms
53,044 KB |
testcase_03 | AC | 35 ms
54,032 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 35 ms
52,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 37 ms
52,656 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 35 ms
52,876 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 35 ms
53,396 KB |
testcase_33 | WA | - |
testcase_34 | AC | 35 ms
52,072 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 36 ms
53,180 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 35 ms
52,260 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 33 ms
53,864 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 33 ms
52,252 KB |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | AC | 34 ms
53,664 KB |
testcase_57 | AC | 34 ms
52,588 KB |
testcase_58 | AC | 34 ms
53,132 KB |
testcase_59 | AC | 32 ms
53,220 KB |
testcase_60 | AC | 34 ms
52,728 KB |
testcase_61 | AC | 33 ms
53,356 KB |
testcase_62 | AC | 33 ms
52,588 KB |
ソースコード
from math import gcd import itertools MOD = 10**9 + 7 n = int(input()) A = list(map(int, input().split())) if max(A) == n: c = A.index(n) + 1 ans = (pow(10, n, MOD * 9) - 1) // 9 * c print(ans % MOD) elif n <= 5: C = [] for i, a in enumerate(A, 1): C += [i] * a G = [] for P in itertools.permutations(C): x = 0 for p in P: x = 10 * x + p G.append(x) x = G[0] for g in G: x = gcd(x, g) print(x) else: G = [] for i in range(1, 10): for j in range(i + 1, 10): if A[i - 1] > 0 and A[j - 1] > 0: G.append((10 * j + i) - (10 * i + j)) G.append((100 * j + i) - (100 * i + j)) G.append((1000 * j + i) - (1000 * i + j)) x = G[0] for g in G: x = gcd(x, g) print(x)