結果

問題 No.1291 小手調べ
ユーザー H20H20
提出日時 2020-11-20 21:23:19
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 376 ms
使用メモリ 75,844 KB
最終ジャッジ日時 2023-02-23 17:48:53
合計ジャッジ時間 1,684 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 83 ms
75,844 KB
testcase_01 AC 85 ms
75,468 KB
testcase_02 AC 86 ms
75,796 KB
testcase_03 AC 87 ms
75,432 KB
testcase_04 AC 87 ms
75,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for i in range(N):
    a = int(input())
    if a>1:
        print(9*10**(a-1))
    else:
        print(10)
0