結果

問題 No.285 消費税2
ユーザー mokraimokrai
提出日時 2017-11-15 10:44:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-25 03:57:17
合計ジャッジ時間 1,710 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 25 ms
10,496 KB
testcase_09 WA -
testcase_10 AC 24 ms
10,368 KB
testcase_11 AC 24 ms
10,368 KB
testcase_12 AC 26 ms
10,496 KB
testcase_13 AC 26 ms
10,368 KB
testcase_14 WA -
testcase_15 AC 25 ms
10,624 KB
testcase_16 WA -
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 26 ms
10,624 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 26 ms
10,496 KB
testcase_24 AC 25 ms
10,496 KB
testcase_25 AC 25 ms
10,496 KB
testcase_26 AC 26 ms
10,496 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 26 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    D = int(input())
    price = round(D * 1.08, 5)
    print(price)

if __name__ == '__main__':
    main()
0