# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1174884 | Pacybwoah | 양말 찾기 (KPI13_socks) | C++17 | 1400 ms | 564 KiB |
#include<cstdio>
using namespace std;
inline char readchar(){
const int S = 1<<16;
static char buf[S], *p = buf, *q = buf;
return p == q and (q = (p = buf) + fread(buf, 1, S, stdin)) == buf ? EOF : *p++;
}
inline int R(int &a){
static char c;
while(((c = readchar()) < '0' or c > '9') and c != '-' and c != EOF);
if(c == '-'){
a = 0;
while((c = readchar()) >= '0' and c <= '9') a *= 10, a -= c ^ '0';
} else {
a = c ^ '0';
while((c = readchar()) >= '0' and c <= '9') a *= 10, a += c ^ '0';
}
return a;
}
int arr[32][2];
int main(){
int n;
R(n);
int x,i;
for(i=0;i<32;i++) arr[i][0]=0,arr[i][1]=0;
int j;
for(i=0;i<n;i++){
R(x);
x+=1000000001;
for(j=31;j>=0;j--){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |