Submission #3748581


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
long long n;
long long srd[1000001];
void dg(long long n){
	srd[n]=srd[n-1]>>1+2;
	return;
}    
int main(){
	cin>>n;
	for(int i=1;i<=n;i++)
		dg(n);
	cout<<f[n];
	return 0;
}

Submission Info

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

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:13:8: error: ‘f’ was not declared in this scope
  cout<<f[n];
        ^