結果

問題 No.1632 Sorting Integers (GCD of M)
ユーザー mkawa2mkawa2
提出日時 2021-07-30 22:06:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,203 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-16 00:21:22
合計ジャッジ時間 6,486 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 WA -
testcase_20 AC 30 ms
10,880 KB
testcase_21 WA -
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 32 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 31 ms
10,752 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 31 ms
10,752 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 WA -
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 31 ms
10,880 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 30 ms
10,752 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 31 ms
10,880 KB
testcase_47 AC 30 ms
10,752 KB
testcase_48 AC 31 ms
10,752 KB
testcase_49 AC 31 ms
10,752 KB
testcase_50 AC 31 ms
10,624 KB
testcase_51 AC 31 ms
10,752 KB
testcase_52 AC 31 ms
10,752 KB
testcase_53 AC 31 ms
10,880 KB
testcase_54 AC 30 ms
10,752 KB
testcase_55 AC 30 ms
10,752 KB
testcase_56 AC 31 ms
10,752 KB
testcase_57 AC 30 ms
10,752 KB
testcase_58 AC 30 ms
10,880 KB
testcase_59 OLE -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
権限があれば一括ダウンロードができます

ソースコード

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)

if len(aa)==1:
    ans=str(aa[0])*cc[0]
    print(ans)
    exit()

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)
0