結果

問題 No.2407 Bouns 2.0
ユーザー mymelochanmymelochan
提出日時 2023-08-11 21:26:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-04-29 12:15:02
合計ジャッジ時間 1,950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,888 KB
testcase_01 AC 48 ms
54,400 KB
testcase_02 AC 53 ms
54,400 KB
testcase_03 AC 47 ms
54,400 KB
testcase_04 AC 48 ms
54,400 KB
testcase_05 AC 48 ms
54,528 KB
testcase_06 AC 47 ms
54,016 KB
testcase_07 AC 49 ms
54,528 KB
testcase_08 AC 50 ms
54,016 KB
testcase_09 AC 49 ms
54,144 KB
testcase_10 AC 49 ms
54,272 KB
testcase_11 AC 48 ms
54,400 KB
testcase_12 AC 48 ms
54,400 KB
testcase_13 AC 48 ms
54,144 KB
testcase_14 AC 48 ms
54,144 KB
testcase_15 AC 49 ms
54,144 KB
testcase_16 AC 48 ms
53,888 KB
testcase_17 AC 49 ms
54,272 KB
testcase_18 AC 48 ms
54,272 KB
testcase_19 AC 48 ms
54,400 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