QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#325593 | #5591. Fading Wind | thanhha1210 | WA | 0ms | 3472kb | C++17 | 520b | 2024-02-11 17:35:54 | 2024-02-11 17:35:54 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int main() {
int h, k, v, s;
long res;
cin >> h >> k >> v >> s;
while (h > 0) {
v+= s;
v-= max(1, v / 10);
if (v >= k)
h++;
if (0 < v < k) {
h--;
if (h == 0)
v = 0;
}
if (v <= 0) {
h = 0;
v = 0;
}
res+= v;
if (s > 0)
s--;
}
cout << res << endl;
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3472kb
input:
1 1 1 1
output:
94770456155105
result:
wrong answer 1st lines differ - expected: '1', found: '94770456155105'