Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
29709 惠子铭 津津的储蓄计划 C++ 通过 0 MS 252 KB 380 2023-11-02 18:32:39

Tests(1/1):


#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main() { int budget, cash=0, saved=0, temp; for (int i=1; i<=12; i++){ cin >> budget; cash += 300; if (cash < budget){ cout << -i << endl; return 0; } temp = (cash - budget) / 100 * 100; cash -= temp+budget; saved += temp; } cout << cash+(int)(saved*1.2) << endl; return 0; }


测评信息: