結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-11-20 10:29:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 307 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 77,024 KB
最終ジャッジ日時 2024-11-20 10:29:26
合計ジャッジ時間 2,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,200 KB
testcase_01 AC 36 ms
53,408 KB
testcase_02 AC 35 ms
52,508 KB
testcase_03 AC 36 ms
52,136 KB
testcase_04 AC 106 ms
76,500 KB
testcase_05 AC 110 ms
77,024 KB
testcase_06 AC 120 ms
76,316 KB
testcase_07 AC 110 ms
76,240 KB
testcase_08 AC 108 ms
76,340 KB
testcase_09 AC 109 ms
76,712 KB
testcase_10 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
    M=int(input())
    d=list(map(int,input().split()))
    if sum(d)==0:
    	print(M)
    	coninue
    ans=0
    for j in range(9):
        for k in range(d[j]):
            ans*=10
            ans+=j+1
    ans*=10**9
    if ans%M!=0:
        ans+=(-ans)%M
    print(ans)
0