結果
問題 | No.1632 Sorting Integers (GCD of M) |
ユーザー |
![]() |
提出日時 | 2021-07-30 22:03:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,136 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 52,736 KB |
最終ジャッジ日時 | 2024-09-16 00:16:31 |
合計ジャッジ時間 | 4,242 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 39 WA * 20 |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = 10**16 # md = 998244353 md = 10**9+7 from itertools import permutations from math import gcd n = II() ac = LI() if n < 8: aa = [] for a, c in enumerate(ac, 1): aa += [str(a)]*c ans = 0 for dd in permutations(aa): cur = int("".join(dd)) ans = gcd(ans, cur) print(ans) exit() aa, cc = [], [] for a, c in enumerate(ac, 1): if c: aa.append(a) cc.append(c) g = 0 for a in aa: g = gcd(g, a) s = 0 for a, c in zip(aa, cc): s += a*c if s%9 == 0: g *= 9 elif s%3 == 0: g *= 3 print(g)