답안 #1028751

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1028751 2024-07-20T08:09:37 Z Mardonbekhazratov 디지털 회로 (IOI22_circuit) C++17
0 / 100
369 ms 1368 KB
#include "circuit.h"

#include <vector>
#include <tuple>
#include <iostream>

using namespace std;

int n,m;
vector<int>p,a;

void init(int N, int M, std::vector<int> P, std::vector<int> A) {
    tie(n,m,p,a)=tie(N,M,P,A);
}

int count_ways(int L, int R) {
    int ans=0;
    for(int i=L;i<=R;i++) a[i-m]^=1,ans+=a[i-m];
    return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 369 ms 1368 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 369 ms 1368 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -