結果
問題 | No.2407 Bouns 2.0 |
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
############################################################# 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)