# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
869632 | irmuun | Ancient Machine 2 (JOI23_ancient2) | C++17 | 68 ms | 692 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "ancient2.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()
string Solve(int n){
vector<int>a={1,1,2},b={2,1,2};
vector<int>A,B;
for(int i=0;i<950;i++){
if(i<511/2){
A.pb(i*2+1);
B.pb(i*2+2);
}
else if(i<511){
A.pb(i);
B.pb(i);
}
else{
A.pb(i+1);
B.pb(i+1);
}
}
A.pb(950);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |