結果

問題 No.1632 Sorting Integers (GCD of M)
ユーザー mkawa2mkawa2
提出日時 2021-07-30 21:58:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,146 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 86,908 KB
実行使用メモリ 71,592 KB
最終ジャッジ日時 2023-10-14 04:40:54
合計ジャッジ時間 7,623 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,356 KB
testcase_01 AC 76 ms
71,592 KB
testcase_02 AC 73 ms
71,196 KB
testcase_03 AC 71 ms
71,256 KB
testcase_04 AC 72 ms
71,308 KB
testcase_05 AC 73 ms
71,336 KB
testcase_06 AC 74 ms
71,284 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 75 ms
71,204 KB
testcase_11 AC 75 ms
71,172 KB
testcase_12 AC 72 ms
71,368 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 72 ms
71,176 KB
testcase_17 AC 70 ms
71,292 KB
testcase_18 AC 70 ms
70,872 KB
testcase_19 WA -
testcase_20 AC 73 ms
71,328 KB
testcase_21 WA -
testcase_22 AC 75 ms
71,336 KB
testcase_23 AC 76 ms
71,284 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 76 ms
71,336 KB
testcase_27 AC 77 ms
71,012 KB
testcase_28 AC 75 ms
71,352 KB
testcase_29 AC 73 ms
71,308 KB
testcase_30 AC 73 ms
71,284 KB
testcase_31 AC 73 ms
71,304 KB
testcase_32 AC 72 ms
71,384 KB
testcase_33 AC 73 ms
71,220 KB
testcase_34 WA -
testcase_35 AC 71 ms
71,292 KB
testcase_36 AC 74 ms
70,948 KB
testcase_37 AC 72 ms
71,096 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 71 ms
71,372 KB
testcase_41 AC 72 ms
71,064 KB
testcase_42 AC 71 ms
71,304 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 72 ms
70,868 KB
testcase_47 AC 73 ms
71,296 KB
testcase_48 AC 70 ms
71,348 KB
testcase_49 AC 71 ms
71,312 KB
testcase_50 AC 71 ms
71,432 KB
testcase_51 AC 73 ms
71,060 KB
testcase_52 AC 73 ms
71,096 KB
testcase_53 AC 72 ms
71,064 KB
testcase_54 AC 76 ms
70,944 KB
testcase_55 AC 74 ms
70,924 KB
testcase_56 AC 74 ms
71,344 KB
testcase_57 AC 75 ms
71,376 KB
testcase_58 AC 74 ms
71,024 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)

r = 0
for a, c in zip(aa, cc):
    r += a*c%9
    r %= 9

if r == 0: g *= 9
elif r%3 == 0: g *= 3

print(g)
0