結果

問題 No.1632 Sorting Integers (GCD of M)
ユーザー mkawa2mkawa2
提出日時 2021-07-31 15:42:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,252 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 10,760 KB
実行使用メモリ 13,036 KB
最終ジャッジ日時 2023-10-14 15:00:19
合計ジャッジ時間 6,331 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
13,036 KB
testcase_01 AC 15 ms
8,588 KB
testcase_02 AC 16 ms
8,396 KB
testcase_03 AC 16 ms
8,400 KB
testcase_04 AC 16 ms
8,596 KB
testcase_05 AC 16 ms
8,400 KB
testcase_06 AC 15 ms
8,396 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 16 ms
8,608 KB
testcase_11 AC 16 ms
8,476 KB
testcase_12 AC 16 ms
8,444 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 16 ms
8,416 KB
testcase_17 AC 15 ms
8,600 KB
testcase_18 AC 15 ms
8,576 KB
testcase_19 WA -
testcase_20 AC 15 ms
8,424 KB
testcase_21 WA -
testcase_22 AC 15 ms
8,620 KB
testcase_23 AC 16 ms
8,400 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 15 ms
8,528 KB
testcase_27 AC 15 ms
8,612 KB
testcase_28 AC 15 ms
8,548 KB
testcase_29 AC 16 ms
8,552 KB
testcase_30 AC 15 ms
8,396 KB
testcase_31 AC 15 ms
8,592 KB
testcase_32 AC 15 ms
8,400 KB
testcase_33 AC 16 ms
8,596 KB
testcase_34 WA -
testcase_35 AC 16 ms
8,596 KB
testcase_36 AC 15 ms
8,416 KB
testcase_37 AC 15 ms
8,540 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 16 ms
8,476 KB
testcase_41 AC 15 ms
8,624 KB
testcase_42 AC 15 ms
8,584 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 16 ms
8,468 KB
testcase_47 AC 16 ms
8,572 KB
testcase_48 AC 15 ms
8,560 KB
testcase_49 AC 16 ms
8,440 KB
testcase_50 AC 15 ms
8,444 KB
testcase_51 AC 15 ms
8,480 KB
testcase_52 AC 16 ms
8,584 KB
testcase_53 AC 16 ms
8,400 KB
testcase_54 AC 16 ms
8,596 KB
testcase_55 AC 15 ms
8,524 KB
testcase_56 AC 16 ms
8,400 KB
testcase_57 AC 14 ms
8,472 KB
testcase_58 AC 15 ms
8,400 KB
testcase_59 TLE -
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 = 1
    for _ in range(n):
        ans = (ans*10+1)%md
    print(ans*aa[0]%md)
    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