結果

問題 No.1632 Sorting Integers (GCD of M)
ユーザー mkawa2mkawa2
提出日時 2021-12-06 11:08:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,502 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 10,808 KB
実行使用メモリ 9,128 KB
最終ジャッジ日時 2023-09-21 15:06:50
合計ジャッジ時間 10,086 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
9,016 KB
testcase_01 AC 19 ms
8,924 KB
testcase_02 AC 20 ms
9,068 KB
testcase_03 AC 19 ms
8,924 KB
testcase_04 AC 19 ms
8,928 KB
testcase_05 AC 20 ms
8,932 KB
testcase_06 AC 19 ms
8,900 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 20 ms
9,020 KB
testcase_11 AC 20 ms
9,016 KB
testcase_12 AC 19 ms
8,876 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 19 ms
9,008 KB
testcase_17 AC 19 ms
9,012 KB
testcase_18 AC 19 ms
8,900 KB
testcase_19 WA -
testcase_20 AC 19 ms
9,096 KB
testcase_21 WA -
testcase_22 AC 20 ms
8,904 KB
testcase_23 AC 19 ms
8,872 KB
testcase_24 AC 20 ms
8,928 KB
testcase_25 AC 20 ms
9,012 KB
testcase_26 AC 20 ms
9,068 KB
testcase_27 AC 20 ms
9,024 KB
testcase_28 AC 20 ms
9,040 KB
testcase_29 AC 20 ms
8,932 KB
testcase_30 AC 21 ms
9,064 KB
testcase_31 AC 20 ms
9,044 KB
testcase_32 AC 19 ms
9,040 KB
testcase_33 AC 20 ms
8,908 KB
testcase_34 WA -
testcase_35 AC 19 ms
8,884 KB
testcase_36 AC 20 ms
9,012 KB
testcase_37 AC 20 ms
9,024 KB
testcase_38 AC 20 ms
8,860 KB
testcase_39 AC 20 ms
9,008 KB
testcase_40 AC 20 ms
9,036 KB
testcase_41 AC 20 ms
8,940 KB
testcase_42 AC 20 ms
8,904 KB
testcase_43 WA -
testcase_44 AC 19 ms
9,012 KB
testcase_45 AC 19 ms
8,856 KB
testcase_46 AC 20 ms
9,016 KB
testcase_47 AC 20 ms
8,932 KB
testcase_48 AC 20 ms
9,048 KB
testcase_49 AC 20 ms
8,948 KB
testcase_50 AC 20 ms
8,884 KB
testcase_51 AC 20 ms
8,860 KB
testcase_52 AC 19 ms
8,896 KB
testcase_53 AC 20 ms
8,928 KB
testcase_54 AC 19 ms
9,040 KB
testcase_55 AC 20 ms
9,008 KB
testcase_56 AC 20 ms
9,048 KB
testcase_57 AC 19 ms
9,084 KB
testcase_58 AC 19 ms
8,932 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 LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
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 = 18446744073709551615
inf = 4294967295
md = 10**9+7
# md = 998244353

from itertools import permutations
from math import gcd
from random import randrange

def solve(aa):
    s = sum(aa)

    g = 0
    for dd in permutations(aa):
        a = sum(d*10**i for i, d in enumerate(dd))
        g = gcd(g, a)

    if s%9 == 0:
        ans = 9
    elif s%3 == 0:
        ans = 3
    else:
        ans = 1
    if g != ans:
        print(g, ans, s, aa)

# for n in range(2,9):
#     for _ in range(10):
#         aa = [randrange(1, 10) for _ in range(n)]
#         solve(aa)

n = II()
cc = [0]+LI()

if cc.count(0) == 9:
    for d in range(1, 10):
        if cc[d]:
            ans = str(d)*cc[d]
            print(ans)
            exit()

g = 0
for a in range(1, 10):
    if cc[a]: g = gcd(g, a)

s = 0
for a in range(1, 10):
    s += a//g*cc[a]

if s%9 == 0:
    ans = g*9
elif s%3 == 0:
    ans = g*3
else:
    ans = g

print(ans)
0