Wrong Answer
Code
#include <set>
#include <array>
#include <vector>
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int t;
cin >> t;
for (int i = 1; i <= t; i++) {
int a, b, c, d;
cin >> a >> b >> c >> d;
cout << "Case " << i << ": " << (a + b * 2 + c * 3 + d * 3) / 9 << '\n';
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1014 FIFA World Cup 2022 Again!
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-05-07 01:20:19
- Judged At
- 2024-11-11 03:31:18
- Judged By
- Score
- 11
- Total Time
- 2ms
- Peak Memory
- 652.0 KiB