NC236326. 魔法寄录
描述
输入描述
输入 个数,。
输出描述
输出 个数,代表所求答案。
示例1
输入:
36 2 1
输出:
3
说明:
每次 blast 对使 boss 的 HP 降低 ,所以如果我们每轮进行五次 Blast 攻击,那么 Boss 会在第 轮后 HP 。C++ 解法, 执行用时: 4ms, 内存消耗: 396K, 提交时间: 2022-06-18 20:39:18
#include<bits/stdc++.h> using namespace std; int main(){ int h,a,b; cin>>h>>a>>b; int p=max(a,3*b); cout<<(h/p+5)/5; return 0; }
pypy3 解法, 执行用时: 109ms, 内存消耗: 25820K, 提交时间: 2022-04-30 19:06:44
h, a, b = map(int, input().strip().split()) x = max(a, b*3) * 5 print((h + x - 1) // x)
Python3 解法, 执行用时: 45ms, 内存消耗: 4544K, 提交时间: 2022-04-30 19:05:46
h,a,b=map(eval,input().split()) print(h//(5*max(a,b*3))+1)