結果

問題 No.2407 Bouns 2.0
ユーザー mymelochanmymelochan
提出日時 2023-08-11 21:26:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 87,052 KB
実行使用メモリ 71,868 KB
最終ジャッジ日時 2023-08-11 21:26:54
合計ジャッジ時間 3,314 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
71,676 KB
testcase_01 AC 96 ms
71,692 KB
testcase_02 AC 95 ms
71,584 KB
testcase_03 AC 96 ms
71,724 KB
testcase_04 AC 96 ms
71,520 KB
testcase_05 AC 96 ms
71,360 KB
testcase_06 AC 94 ms
71,868 KB
testcase_07 AC 94 ms
71,776 KB
testcase_08 AC 94 ms
71,312 KB
testcase_09 AC 95 ms
71,784 KB
testcase_10 AC 109 ms
71,464 KB
testcase_11 AC 96 ms
71,444 KB
testcase_12 AC 97 ms
71,352 KB
testcase_13 AC 96 ms
71,708 KB
testcase_14 AC 95 ms
71,628 KB
testcase_15 AC 97 ms
71,724 KB
testcase_16 AC 94 ms
71,516 KB
testcase_17 AC 95 ms
71,440 KB
testcase_18 AC 94 ms
71,564 KB
testcase_19 AC 96 ms
71,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations
from math import sin,cos
#from math import isqrt #DO NOT USE PyPy

ipt = sys.stdin.readline
iin = lambda :int(ipt())
lmin = lambda :list(map(int,ipt().split()))

#############################################################

W,Z,B = input().split()
W = int(W)
Z = int(Z)

if B == "0.5":
    print(W//2+Z//2+W+Z)
if B == "0.8":
    print(W*8//10+Z*8//10+W+Z)
if B == "1.2":
    print(W*12//10+Z*12//10+W+Z)
if B == "1.6":
    print(W*16//10+Z*16//10+W+Z)
if B == "2.0":
    print(W*2+Z*2+W+Z)
0