2 条题解
-
1
【2022省赛B组】试题C:刷题统计
题解
🎉️ 一周的做题量为, 这是一个固定的值。需要实现大于等于题,可以先计算至少需要多少周。
🎉️ 直接用除以得到需要花费的周数,剩下的题数为, 直接暴力计算需要几天可以完成。
提交代码
#include<bits/stdc++.h> #define int long long void solve() { int a, b, n; std::cin >> a >> b >> n; int cycle = a * 5 + b * 2; int ans = (n / cycle) * 7; int rest = n % cycle; if(rest <= a * 5) { ans += (rest + a - 1) / a; } else { ans += 5; rest -= a * 5; ans += (rest + b - 1) / b; } std::cout << ans << "\n"; } signed main() { std::ios::sync_with_stdio(false); std::cin.tie(0); int t = 1; while(t--) solve(); return 0; }
- 1
信息
- ID
- 968
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 3
- 标签
- 递交数
- 344
- 已通过
- 58
- 上传者