Wrong Answer
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
int a, b, c, d;
cin >> a >> b >> c >> d;
int res = a + b * 2 + c * 3 + d * 3;
res /= 9;
cout << "Case " << cs << ": " << res << "\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tc = 1;
cin >> tc;
for (int cs = 1; cs <= tc; cs++) {
solve(cs);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1014 FIFA World Cup 2022 Again!
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-13 07:05:27
- Judged At
- 2024-11-11 03:26:41
- Judged By
- Score
- 11
- Total Time
- 2ms
- Peak Memory
- 376.0 KiB