結果

問題 No.1291 小手調べ
ユーザー mlihua09mlihua09
提出日時 2020-12-05 15:11:56
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 87,040 KB
実行使用メモリ 71,392 KB
最終ジャッジ日時 2023-10-13 22:02:42
合計ジャッジ時間 1,240 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,004 KB
testcase_01 AC 74 ms
71,200 KB
testcase_02 AC 73 ms
71,392 KB
testcase_03 AC 73 ms
71,232 KB
testcase_04 AC 76 ms
71,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n = int(input())
    
    if n == 1:
        print(10)
    
    else:
        print('9' + '0' * (n - 1))
0