結果

問題 No.285 消費税2
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-05-04 13:17:11
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 57 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 87,308 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2023-07-28 01:16:06
合計ジャッジ時間 3,959 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,604 KB
testcase_01 AC 70 ms
71,356 KB
testcase_02 AC 68 ms
71,292 KB
testcase_03 AC 70 ms
71,376 KB
testcase_04 AC 70 ms
71,344 KB
testcase_05 AC 70 ms
71,624 KB
testcase_06 AC 69 ms
71,376 KB
testcase_07 AC 69 ms
71,652 KB
testcase_08 AC 69 ms
71,148 KB
testcase_09 AC 70 ms
71,368 KB
testcase_10 AC 69 ms
71,144 KB
testcase_11 AC 70 ms
71,680 KB
testcase_12 AC 70 ms
71,420 KB
testcase_13 AC 69 ms
71,416 KB
testcase_14 AC 69 ms
71,620 KB
testcase_15 AC 70 ms
71,252 KB
testcase_16 AC 68 ms
71,308 KB
testcase_17 AC 68 ms
71,180 KB
testcase_18 AC 69 ms
71,336 KB
testcase_19 AC 69 ms
71,448 KB
testcase_20 AC 69 ms
71,416 KB
testcase_21 AC 69 ms
71,340 KB
testcase_22 AC 70 ms
71,320 KB
testcase_23 AC 69 ms
71,608 KB
testcase_24 AC 69 ms
71,284 KB
testcase_25 AC 69 ms
71,148 KB
testcase_26 AC 69 ms
71,444 KB
testcase_27 AC 68 ms
71,488 KB
testcase_28 AC 70 ms
71,572 KB
testcase_29 AC 69 ms
71,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
#print(d * 1.08)
print((d * 108) / 100)
0