結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー Meso MesoMeso Meso
提出日時 2024-11-21 19:51:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 332 bytes
コンパイル時間 940 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-11-21 19:51:04
合計ジャッジ時間 2,801 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 130 ms
76,800 KB
testcase_05 AC 167 ms
78,080 KB
testcase_06 AC 125 ms
76,288 KB
testcase_07 AC 126 ms
76,424 KB
testcase_08 AC 129 ms
76,620 KB
testcase_09 AC 158 ms
78,208 KB
testcase_10 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

t = int(input())

for i in range(t):
    m = int(input())
    d = list(map(int, input().split()))
    ans = ""
    for i in range(9):
        for j in range(d[i]):
            ans += str(i+1)
    x = int(ans) * (10 ** 9)
    res= x % m
    if res == 0:
        res = m
    else:
        x += (m - res)
    print(x)
0