結果

問題 No.1291 小手調べ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-11-20 21:36:26
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 259 ms
使用メモリ 75,832 KB
最終ジャッジ日時 2023-02-23 18:01:45
合計ジャッジ時間 1,597 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 81 ms
75,680 KB
testcase_01 AC 84 ms
75,832 KB
testcase_02 AC 85 ms
75,700 KB
testcase_03 AC 85 ms
75,684 KB
testcase_04 AC 87 ms
75,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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