結果
問題 |
No.1291 小手調べ
|
ユーザー |
|
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 1 RE * 3 |
ソースコード
N = int(input()) for i in range(N): d = int(input()) print(int("9" * d) - int("9" * (d - 1)))