結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,188 KB
testcase_01 AC 43 ms
55,040 KB
testcase_02 AC 44 ms
54,620 KB
testcase_03 AC 43 ms
55,272 KB
testcase_04 AC 45 ms
55,704 KB
testcase_05 AC 45 ms
55,848 KB
testcase_06 AC 44 ms
56,080 KB
testcase_07 AC 44 ms
55,824 KB
testcase_08 AC 44 ms
55,380 KB
testcase_09 AC 45 ms
55,452 KB
testcase_10 AC 44 ms
55,188 KB
testcase_11 AC 44 ms
55,372 KB
testcase_12 AC 44 ms
55,220 KB
testcase_13 AC 44 ms
55,048 KB
testcase_14 AC 44 ms
54,432 KB
testcase_15 AC 44 ms
54,368 KB
testcase_16 AC 44 ms
54,980 KB
testcase_17 AC 44 ms
56,120 KB
testcase_18 AC 45 ms
55,252 KB
testcase_19 AC 45 ms
54,900 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