Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
const long long M=2e5+10,MOD=2000000007;
typedef long long ll;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t=1;
cin>>t;
while(t--){
ll n;
cin>>n;
if(n<=2){
cout<<n-1<<"\n";
continue;
}
cout<<((n-2)*3)+1<<"\n";
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1026 LUFA cup 2024
- Contest
- Brain booster #2
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-03-06 16:54:04
- Judged At
- 2024-11-11 03:41:09
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 764.0 KiB