結果
| 問題 | No.285 消費税2 |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-30 22:36:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 2,000 ms |
| コード長 | 162 bytes |
| コンパイル時間 | 266 ms |
| コンパイル使用メモリ | 82,044 KB |
| 実行使用メモリ | 51,968 KB |
| 最終ジャッジ日時 | 2024-10-08 05:28:44 |
| 合計ジャッジ時間 | 2,429 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 26 |
ソースコード
n = int(input())*108
if n%100==0:
print(n//100)
elif n%10==0:
x = str(n//10)
print(x[:-1]+"."+x[-1])
else:
x = str(n)
print(x[:-2]+"."+x[-2:])
convexineq