/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Wrong Answer 1ms 540.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Accepted 1ms 540.0 KiB
#5 Accepted 1ms 600.0 KiB
#6 Accepted 2ms 628.0 KiB
#7 Accepted 2ms 376.0 KiB
#8 Accepted 1ms 332.0 KiB
#9 Accepted 1ms 540.0 KiB
#10 Accepted 1ms 540.0 KiB
#11 Accepted 1ms 332.0 KiB
#12 Accepted 1ms 328.0 KiB
#13 Wrong Answer 2ms 652.0 KiB

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