/ 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>

#pragma GCC optimize("Ofast")
using namespace std;

void solve(int cs) {
  int n;
  cin >> n;
  string s;
  cin >> s;
  if (s.back() == 'M') cout << "Mahfuz\n";
  else if (s.back() == 'E') cout << "Emon\n";
  else cout << "IDK\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
P1031 Clash of programmers
Language
C99 (GCC 13.2.0)
Submit At
2024-07-14 09:01:26
Judged At
2024-07-14 09:01:26
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes