結果

問題 No.285 消費税2
ユーザー YU HiroseYU Hirose
提出日時 2024-06-21 11:14:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 43 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 53,348 KB
最終ジャッジ日時 2024-06-21 11:14:12
合計ジャッジ時間 2,804 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,612 KB
testcase_01 AC 34 ms
52,280 KB
testcase_02 AC 34 ms
52,488 KB
testcase_03 AC 33 ms
51,836 KB
testcase_04 AC 34 ms
52,544 KB
testcase_05 AC 33 ms
52,156 KB
testcase_06 AC 35 ms
52,228 KB
testcase_07 AC 32 ms
52,856 KB
testcase_08 AC 33 ms
51,784 KB
testcase_09 AC 31 ms
52,828 KB
testcase_10 AC 31 ms
52,956 KB
testcase_11 AC 34 ms
52,344 KB
testcase_12 AC 33 ms
52,972 KB
testcase_13 AC 34 ms
52,952 KB
testcase_14 AC 33 ms
53,348 KB
testcase_15 AC 33 ms
51,980 KB
testcase_16 AC 33 ms
52,824 KB
testcase_17 AC 35 ms
52,456 KB
testcase_18 AC 33 ms
52,168 KB
testcase_19 AC 34 ms
52,576 KB
testcase_20 AC 37 ms
53,212 KB
testcase_21 AC 34 ms
52,960 KB
testcase_22 AC 33 ms
52,860 KB
testcase_23 AC 33 ms
52,756 KB
testcase_24 AC 32 ms
52,652 KB
testcase_25 AC 31 ms
52,828 KB
testcase_26 AC 33 ms
51,828 KB
testcase_27 AC 34 ms
51,936 KB
testcase_28 AC 32 ms
51,868 KB
testcase_29 AC 31 ms
52,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
n *= 108
n /= 100
print(n)
0