# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1161821 | irmuun | Spy 3 (JOI24_spy3) | C++20 | 18 ms | 3612 KiB |
#include "Aoi.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define ff first
#define ss second
#define all(s) s.begin(),s.end()
#define rall(s) s.rbegin(),s.rend()
namespace {
const int lg=40;
} // namespace
string aoi(int N, int M, int Q, int K, vector<int> A,vector<int> B, vector<long long> C,
vector<int> T,vector<int> X) {
string s="";
for(int i:X){
ll len=C[i];
cerr<<len<<' ';
for(int j=0;j<lg;j++){
if(len&(1ll<<j)){
s+='1';
}
else{
s+='0';
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |