結果
問題 | No.1291 小手調べ |
ユーザー |
![]() |
提出日時 | 2020-11-20 21:23:42 |
言語 | PyPy3 (7.9.16) |
結果 |
AC
|
実行時間 | 82 ms / 2,000 ms |
コード長 | 135 bytes |
コンパイル時間 | 252 ms |
実行使用メモリ | 75,780 KB |
最終ジャッジ日時 | 2023-02-23 17:49:56 |
合計ジャッジ時間 | 1,396 ms |
ジャッジサーバーID (参考情報) |
judge15 / judge12 |
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
75,744 KB |
testcase_01 | AC | 82 ms
75,468 KB |
testcase_02 | AC | 82 ms
75,736 KB |
testcase_03 | AC | 81 ms
75,780 KB |
testcase_04 | AC | 82 ms
75,712 KB |
ソースコード
n = int(input()) for i in range(n): k = int(input()) if k == 1: print(10) continue print('9' + '0' * (k-1))