# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
349596 | CaroLinda | Printed Circuit Board (CEOI12_circuit) | C++14 | 83 ms | 30932 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define sz(x) (int)(x.size())
#define debug printf
#define lp(i,a,b) for(int i = a ; i < b; i++)
#define pb push_back
#define ff first
#define ss second
#define mk make_pair
#define pii pair<int,int>
#define ll long long
#define all(x) x.begin(),x.end()
const int MAX = 2e5+5 ;
using namespace std ;
char c ;
void readInt(int &num)
{
num = 0 ;
for(c = getchar() ; (c > 47 && c <58 ) ; c = getchar() )
num = num*10 + c - 48 ;
}
void readLong(ll &num )
{
num = 0 ;
for(c = getchar() ; (c> 47 && c < 58 ) ; c = getchar() )
num = num*10 + c - 48 ;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |