結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,944 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 42 ms
54,060 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