結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー KazunKazun
提出日時 2024-01-21 11:49:48
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 426 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-11-19 21:41:21
合計ジャッジ時間 1,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 90 ms
76,492 KB
testcase_05 AC 90 ms
77,312 KB
testcase_06 AC 91 ms
76,836 KB
testcase_07 AC 91 ms
77,172 KB
testcase_08 AC 90 ms
77,032 KB
testcase_09 AC 90 ms
77,100 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    M = int(input())
    d = [0] + list(map(int, input().split()))

    X_str = ''
    for i in range(1, 10):
        X_str += str(i) * d[i]

    X = int(X_str + ('0' * (18 - len(X_str))))
    X += (M - X % M) % M
    return X

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

T = int(input())
write("\n".join(map(str, [solve() for t in range(T)])))
0