結果

問題 No.1291 小手調べ
ユーザー 37zigen37zigen
提出日時 2020-12-18 18:41:42
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 11,752 KB
実行使用メモリ 10,096 KB
最終ジャッジ日時 2023-10-21 08:12:33
合計ジャッジ時間 951 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,096 KB
testcase_01 AC 30 ms
10,096 KB
testcase_02 AC 30 ms
10,096 KB
testcase_03 AC 30 ms
10,096 KB
testcase_04 AC 30 ms
10,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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