結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-11-20 10:29:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 76,760 KB
最終ジャッジ日時 2024-11-20 10:29:42
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,684 KB
testcase_01 AC 39 ms
52,408 KB
testcase_02 AC 39 ms
53,560 KB
testcase_03 AC 41 ms
51,944 KB
testcase_04 AC 119 ms
76,528 KB
testcase_05 AC 127 ms
76,760 KB
testcase_06 AC 119 ms
76,720 KB
testcase_07 AC 124 ms
76,288 KB
testcase_08 AC 127 ms
76,308 KB
testcase_09 AC 120 ms
76,520 KB
testcase_10 AC 41 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
    M=int(input())
    d=list(map(int,input().split()))
    if sum(d)==0:
    	print(M)
    	continue
    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