結果

問題 No.2407 Bouns 2.0
コンテスト
ユーザー mymelochan
提出日時 2023-08-11 21:26:50
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 781 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 382 ms
コンパイル使用メモリ 85,504 KB
実行使用メモリ 54,656 KB
最終ジャッジ日時 2026-05-13 03:45:59
合計ジャッジ時間 1,692 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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

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