結果

問題 No.1291 小手調べ
ユーザー c-yanc-yan
提出日時 2020-11-20 21:25:56
言語 Python3
(3.10.1 + numpy 1.22.3 + scipy 1.8.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 126 ms
使用メモリ 9,756 KB
最終ジャッジ日時 2023-02-23 17:53:24
合計ジャッジ時間 974 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 14 ms
7,700 KB
testcase_01 AC 14 ms
7,760 KB
testcase_02 AC 14 ms
9,756 KB
testcase_03 AC 13 ms
7,768 KB
testcase_04 AC 13 ms
7,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, *d = map(int, open(0).read().split())

for x in d:
    if x == 1:
        print(10)
    else:
        print(9 * 10 ** (x - 1))
0