#include "circuit.h"
#include <bits/stdc++.h>
using namespace std;
#define ll int
#define sz(x) (ll)x.size()
#define F first
#define S second
#define MID ((l+r)/2)
#define pb push_back
#define dbg(x) cout<<#x<<": "<<x<<endl;
#define dbg2(x,y) cout<<#x<<": "<<x<<" "<<#y<<": "<<y<<endl;
typedef vector <ll> vi;
typedef pair <ll,ll> ii;
typedef vector <ii> vii;
void printVct(vi &v, string s =""){
cout<<s<<": ";
for (ll i=0; i<sz(v); i++){
cout<<v[i]<<" ";
}
cout<<endl;
}
ll n,m;
vi v;
void init(int N, int M, vi P, vi A) {
n = N, m = M;
v = A;
return ;
}
int count_ways(int L, int R) {
L -= n, R -= n;
dbg2(L,R);
for (ll i=L; i<=R; i++){
v[i] = !v[i];
}
printVct(v);
ll c = 0;
for (ll i =0; i<m; i++){
c += v[i];
}
return c;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Token parameter [name=secret] equals to "L:", doesn't correspond to pattern "[0-9a-zA-Z]{1,64}" |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Token parameter [name=secret] equals to "L:", doesn't correspond to pattern "[0-9a-zA-Z]{1,64}" |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Token parameter [name=secret] equals to "L:", doesn't correspond to pattern "[0-9a-zA-Z]{1,64}" |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
12 ms |
1104 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
12 ms |
1104 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Token parameter [name=secret] equals to "L:", doesn't correspond to pattern "[0-9a-zA-Z]{1,64}" |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Token parameter [name=secret] equals to "L:", doesn't correspond to pattern "[0-9a-zA-Z]{1,64}" |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Token parameter [name=secret] equals to "L:", doesn't correspond to pattern "[0-9a-zA-Z]{1,64}" |
2 |
Halted |
0 ms |
0 KB |
- |