/ SeriousOJ /

Record Detail

Compile Error

foo.c:1:10: fatal error: bits/stdc++.h: No such file or directory
    1 | #include <bits/stdc++.h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.

Code

#include <bits/stdc++.h>
using namespace std;

int main() 
{
    
    vector<int> a(3);
    cin >> a[0] >> a[1] >> a[2];

    int target = 360 / 3;

    vector<int> v(3);
    for (int i = 0; i < 3; i++) 
    {
        v[i] = target - a[i];
    }
    cout << v[0] << " " << v[1] << " " << v[2] << endl;

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1130 Angle Equalizer
Contest
Happy New Year 2025
Language
C99 (GCC 13.2.0)
Submit At
2025-01-02 15:08:56
Judged At
2025-01-02 15:08:56
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes