Submission #3748360


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
int n;
int srd[100000001]={2,};
int dg(int n){
	if(srd[n])
    	return srd[n];
    if(n>0)
    	srd[n]=dg(n-1)*2+2;
}    
int main(){
	cin>>n;
	dg(n);
	return 0;
}

Submission Info

Submission Time
Task F - Trichotomy
User luogu_bot3
Language C++ (GCC 5.4.1)
Score 0
Code Size 208 Byte
Status CE

Compile Error

g++: internal compiler error: File size limit exceeded (program as)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-5/README.Bugs> for instructions.