結果

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

テストケース

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

ソースコード

diff #

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