Accepted
Code
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define optimize() ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define endl '\n'
const int sz = 1e5+5;
const int mod = 1e9+7;
void solve(){
int n; cin >> n;
int ans=0;
if(n==2 || n==3) cout << 1 << endl;
else{
int c = n/3;
if(n%3==0) cout << c << endl;
else{
n -= (3*c-1);
cout << c+(n/2) << endl;
}
}
}
signed main(){
optimize();
int tc; tc=1;
while(tc--){
solve();
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1106 too easy or three easy
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-10-03 21:21:31
- Judged At
- 2024-11-11 02:44:21
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 532.0 KiB