結果
問題 | No.1291 小手調べ |
ユーザー | tobusakana |
提出日時 | 2021-01-11 01:30:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 38 ms / 2,000 ms |
コード長 | 135 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 54,128 KB |
最終ジャッジ日時 | 2024-11-21 08:40:19 |
合計ジャッジ時間 | 773 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
53,308 KB |
testcase_01 | AC | 38 ms
54,128 KB |
testcase_02 | AC | 37 ms
52,428 KB |
testcase_03 | AC | 38 ms
53,220 KB |
testcase_04 | AC | 38 ms
52,140 KB |
ソースコード
N = int(input()) for i in range(N): d = int(input()) if d == 1: print(10) else: print(int("9" * d) - int("9" * (d - 1)))