Submission #952775

# Submission time Handle Problem Language Result Execution time Memory
952775 2024-03-24T19:07:45 Z kilikuma Handcrafted Gift (IOI20_gift) C++17
0 / 100
1 ms 348 KB
#include "gift.h"
#include <bits/stdc++.h>

using namespace std;

int construct(int n, int r, vector<int> a, vector<int> b, vector<int> x) {
    for (int i = 0; i < r; i ++) {
      if (a[i] == b[i])
        return 0;
    }
    string s(n, 'R');
    for (int i = 0; i < n; i ++) {
      if (i % 2) s[i] = 'L';
    }
    craft(s);
    return 1;
}
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Possible does not match answer file
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -