fork download
  1. // ~~ icebear ~~
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4. #define int ll
  5. typedef long long ll;
  6. typedef pair<int, int> ii;
  7. typedef pair<int, ii> iii;
  8.  
  9. #define FOR(i,a,b) for(int i=(a); i<=(b); ++i)
  10. #define FORR(i,a,b) for(int i=(a); i>=(b); --i)
  11. #define REP(i, n) for(int i=0; i<(n); ++i)
  12. #define RED(i, n) for(int i=(n)-1; i>=0; --i)
  13. #define MASK(i) (1LL << (i))
  14. #define BIT(S, i) (((S) >> (i)) & 1)
  15. #define mp make_pair
  16. #define pb push_back
  17. #define fi first
  18. #define se second
  19. #define all(x) x.begin(), x.end()
  20. #define task "icebearat"
  21.  
  22. const int MOD = 1e9 + 7;
  23. const int inf = 1e9 + 27092008;
  24. const ll INF = 1e18 + 27092008;
  25. const int N = 2e5 + 5;
  26.  
  27. mt19937_64 rd(time(0));
  28. int random(int l, int r) {
  29. return l + rd() % (r - l + 1);
  30. }
  31.  
  32. void gen() {
  33. ofstream cout("gen.inp");
  34.  
  35. cout.close();
  36. }
  37.  
  38. void process(void) {
  39. FOR(i, 1, 30) {
  40. gen();
  41.  
  42. system("main.exe");
  43. system("trau.exe");
  44.  
  45. cout << "#Test " << i << " : ";
  46. if (system("fc gen.out gen.ans")) {
  47. cout << "WRONG\n";
  48. return;
  49. } else cout << "PASS\n";
  50. }
  51. }
  52.  
  53. signed main() {
  54. ios_base::sync_with_stdio(0);
  55. cin.tie(0); cout.tie(0);
  56. if (fopen(task".inp", "r")) {
  57. freopen(task".inp", "r", stdin);
  58. freopen(task".out", "w", stdout);
  59. }
  60. int tc = 1;
  61. // cin >> tc;
  62. while(tc--) {
  63. process();
  64. }
  65. return 0;
  66. }
  67.  
  68.  
Success #stdin #stdout #stderr 0.01s 5296KB
stdin
Standard input is empty
stdout
#Test 1 : WRONG
stderr
sh: 1: main.exe: not found
sh: 1: trau.exe: not found
sh: 1: fc: not found