結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー loop0919loop0919
提出日時 2023-11-14 12:01:58
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 283 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 77,536 KB
最終ジャッジ日時 2024-11-19 21:27:23
合計ジャッジ時間 2,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,296 KB
testcase_01 AC 36 ms
52,696 KB
testcase_02 AC 37 ms
52,516 KB
testcase_03 AC 36 ms
52,360 KB
testcase_04 AC 146 ms
77,112 KB
testcase_05 AC 150 ms
77,536 KB
testcase_06 AC 145 ms
77,084 KB
testcase_07 AC 144 ms
77,428 KB
testcase_08 AC 146 ms
77,116 KB
testcase_09 AC 148 ms
77,284 KB
testcase_10 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    M = int(input())
    d = list(map(int, input().split()))
    
    ans = ""
    for i, d in enumerate(d, start=1):
        ans += str(i) * d
    
    ans = int(ans) * 10**9
    ans += (M - ans) % M
    
    print(ans)


T = int(input())
for _ in range(T):
    solve()
0