Skip to content

Commit

Permalink
problem(A1047): fix std
Browse files Browse the repository at this point in the history
Signed-off-by: AgOH <stagoh17@gmail.com>
  • Loading branch information
StableAgOH committed Jul 3, 2024
1 parent 7bd2489 commit 2a19345
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions problems/A/A1047/std.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ int main()
cin>>n;
if(n==1) cout<<0<<endl;
else if(n==2) cout<<1<<endl;
else if(n==3) cout<<3<<endl;
else
{
long long tmp = pow(2, n-3);
Expand Down

0 comments on commit 2a19345

Please sign in to comment.