結果

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

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 62 ms
75,548 KB
testcase_01 AC 66 ms
75,680 KB
testcase_02 AC 66 ms
75,852 KB
testcase_03 AC 66 ms
75,672 KB
testcase_04 AC 67 ms
75,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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