結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー loop0919loop0919
提出日時 2023-11-14 11:54:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 76,896 KB
最終ジャッジ日時 2023-11-14 11:54:59
合計ジャッジ時間 2,369 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,460 KB
testcase_01 AC 38 ms
53,460 KB
testcase_02 AC 38 ms
53,460 KB
testcase_03 AC 38 ms
53,460 KB
testcase_04 AC 158 ms
76,896 KB
testcase_05 AC 161 ms
76,896 KB
testcase_06 AC 160 ms
76,896 KB
testcase_07 AC 157 ms
76,896 KB
testcase_08 AC 155 ms
76,896 KB
testcase_09 AC 155 ms
76,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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