結果

問題 No.1291 小手調べ
ユーザー 👑 KazunKazun
提出日時 2020-11-20 21:21:28
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 251 ms
使用メモリ 75,772 KB
最終ジャッジ日時 2023-02-23 17:42:24
合計ジャッジ時間 1,311 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 63 ms
75,560 KB
testcase_01 AC 65 ms
75,772 KB
testcase_02 AC 63 ms
75,536 KB
testcase_03 AC 64 ms
75,576 KB
testcase_04 AC 65 ms
75,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

for _ in range(N):
    d=int(input())
    if d==1:
        print(10)
    else:
        print("9"+"0"*(d-1))
0