結果

問題 No.1291 小手調べ
ユーザー tobusakanatobusakana
提出日時 2021-01-11 01:28:51
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 98 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 66,416 KB
最終ジャッジ日時 2024-05-01 06:32:34
合計ジャッジ時間 948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())

for i in range(N):
  d = int(input())
  print(int("9" * d) - int("9" * (d - 1)))
0