結果
| 問題 | No.285 消費税2 |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2024-03-20 06:16:34 |
| 言語 | PyPy3 (7.3.23 + ac-library) |
| 結果 |
AC
不安定
|
| 実行時間 | 56 ms / 2,000 ms |
| + 235µs | |
| コード長 | 84 bytes |
| 記録 | |
| コンパイル時間 | 215 ms |
| コンパイル使用メモリ | 95,316 KB |
| 実行使用メモリ | 78,664 KB |
| 最終ジャッジ日時 | 2026-09-06 13:37:12 |
| 合計ジャッジ時間 | 3,299 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 26 |
ソースコード
D = int(input())
# ans = D * 1.08 # WA
x = D * 108
print(f'{x//100}.{x%100:02}')
norioc