結果

問題 No.1291 小手調べ
ユーザー SPD_9X2SPD_9X2
提出日時 2020-11-20 21:22:14
言語 PyPy3
(7.9.16)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 241 ms
実行使用メモリ 75,732 KB
最終ジャッジ日時 2023-02-23 17:45:33
合計ジャッジ時間 1,480 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
75,488 KB
testcase_01 AC 72 ms
75,732 KB
testcase_02 AC 74 ms
75,696 KB
testcase_03 AC 75 ms
75,488 KB
testcase_04 AC 74 ms
75,600 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