結果
| 問題 |
No.285 消費税2
|
| コンテスト | |
| ユーザー |
airis
|
| 提出日時 | 2015-10-10 14:33:11 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 108 bytes |
| コンパイル時間 | 47 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2024-07-21 06:13:46 |
| 合計ジャッジ時間 | 1,414 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 8 WA * 18 |
ソースコード
a = input()
b = a * 8
d = str(a + int(b / 100.0))
f = str(b / 100.0).split(".")[1][:2]
print d + "." + f
airis