結果

問題 No.1632 Sorting Integers (GCD of M)
ユーザー ああいいああいい
提出日時 2022-03-02 10:23:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 53,852 KB
最終ジャッジ日時 2024-07-16 04:40:59
合計ジャッジ時間 5,017 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,116 KB
testcase_01 AC 45 ms
52,200 KB
testcase_02 AC 42 ms
52,348 KB
testcase_03 AC 42 ms
52,564 KB
testcase_04 AC 42 ms
52,740 KB
testcase_05 AC 42 ms
52,620 KB
testcase_06 AC 41 ms
53,012 KB
testcase_07 AC 41 ms
52,896 KB
testcase_08 AC 41 ms
52,884 KB
testcase_09 AC 41 ms
53,816 KB
testcase_10 AC 41 ms
52,612 KB
testcase_11 AC 41 ms
52,952 KB
testcase_12 AC 40 ms
53,356 KB
testcase_13 AC 40 ms
52,540 KB
testcase_14 AC 41 ms
53,556 KB
testcase_15 AC 41 ms
52,416 KB
testcase_16 AC 41 ms
53,024 KB
testcase_17 AC 41 ms
51,876 KB
testcase_18 AC 42 ms
52,548 KB
testcase_19 AC 40 ms
52,680 KB
testcase_20 AC 40 ms
53,076 KB
testcase_21 AC 40 ms
53,168 KB
testcase_22 AC 41 ms
53,372 KB
testcase_23 AC 41 ms
53,268 KB
testcase_24 AC 41 ms
52,348 KB
testcase_25 AC 41 ms
53,372 KB
testcase_26 AC 43 ms
52,388 KB
testcase_27 AC 41 ms
52,280 KB
testcase_28 AC 41 ms
52,264 KB
testcase_29 AC 40 ms
53,152 KB
testcase_30 AC 42 ms
52,408 KB
testcase_31 AC 41 ms
52,672 KB
testcase_32 AC 43 ms
53,364 KB
testcase_33 AC 46 ms
52,312 KB
testcase_34 AC 44 ms
52,892 KB
testcase_35 AC 42 ms
52,392 KB
testcase_36 AC 46 ms
52,776 KB
testcase_37 AC 42 ms
52,160 KB
testcase_38 AC 42 ms
52,208 KB
testcase_39 AC 41 ms
52,240 KB
testcase_40 AC 40 ms
53,260 KB
testcase_41 AC 41 ms
51,940 KB
testcase_42 AC 40 ms
52,744 KB
testcase_43 AC 41 ms
52,332 KB
testcase_44 AC 40 ms
52,824 KB
testcase_45 AC 41 ms
52,336 KB
testcase_46 AC 41 ms
52,336 KB
testcase_47 AC 41 ms
52,348 KB
testcase_48 AC 41 ms
52,992 KB
testcase_49 AC 40 ms
53,072 KB
testcase_50 AC 42 ms
53,260 KB
testcase_51 AC 41 ms
52,136 KB
testcase_52 AC 41 ms
53,424 KB
testcase_53 AC 42 ms
53,852 KB
testcase_54 AC 41 ms
52,812 KB
testcase_55 AC 40 ms
53,148 KB
testcase_56 AC 41 ms
52,940 KB
testcase_57 AC 41 ms
53,212 KB
testcase_58 AC 41 ms
52,292 KB
testcase_59 AC 41 ms
52,628 KB
testcase_60 AC 44 ms
52,200 KB
testcase_61 AC 41 ms
52,632 KB
testcase_62 AC 41 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
c = list(map(int,input().split()))
import sys

def gcd(a,b):
    if b == 0:return a
    while True:
        r = a % b
        a = b
        b = r
        if r == 0:
            return a
d = 0
for i in range(9):
    for j in range(i+1,9):
        if c[i] and c[j]:
            d = gcd(d,j-i)
P = 10 ** 9 + 7
if d == 0:
    d = P
else:
    d *= 9 * 9
keta = 0
amari = 0
for i in range(9):
    if c[i] == 0:continue
    amari = (amari + pow(10,keta,d) * (pow(10,c[i],d)-1)%d*(i+1)) % d
    keta += c[i]
if d == P:
    print(amari*pow(9,P-2,P)%P)
else:
    print(gcd(d,amari)//9)
0