結果

問題 No.1632 Sorting Integers (GCD of M)
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-08 15:43:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,242 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,696 KB
最終ジャッジ日時 2024-09-08 15:43:48
合計ジャッジ時間 7,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

## https://yukicoder.me/problems/no/1632

MOD = 10 ** 9 + 7

def main():
    N = int(input())
    C = list(map(int, input().split()))

    # C > 0となるものが一つしかない場合は
    cnt = 0
    cnt_i = -1
    for i in range(9):
        if C[i] > 0:
            cnt += 1
            cnt_i = i + 1
    if cnt == 1:
        ans = 0
        for _ in range(C[cnt_i - 1]):
            ans *= 10
            ans %= MOD
            ans += cnt_i
            ans %= MOD
        print(ans)
    else:
        # 9で割れるか?
        mods = 1

        nine_check = 0
        for i in range(9):
            nine_check += (i + 1) * C[i]
        if nine_check % 9 == 0:
            mods *= 9
        elif nine_check % 3 == 0:
            mods *= 3

        four_check = True
        for i in range(9):
            if (i + 1) % 4 != 0 and C[i] > 0:
                four_check = False
                break
        two_check = True
        for i in range(9):
            if (i + 1) % 2 != 0 and C[i] > 0:
                two_check = False
                break
        
        if four_check:
            mods *= 4
        elif two_check:
            mods *= 2

        print(mods)




        










if __name__ == "__main__":
    main()
0