結果
| 問題 |
No.1915 Addition
|
| コンテスト | |
| ユーザー |
AEn
|
| 提出日時 | 2022-05-11 18:59:58 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 99 bytes |
| コンパイル時間 | 156 ms |
| コンパイル使用メモリ | 82,156 KB |
| 実行使用メモリ | 54,372 KB |
| 最終ジャッジ日時 | 2024-07-19 04:22:52 |
| 合計ジャッジ時間 | 2,104 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 10 |
ソースコード
T = int(input())
for i in range(T):
N = int(input())
C = N+1
print(10**(len(str(C)))-C)
AEn