Time Exceeded
Code
#include<bits/stdc++.h>
#define optimize() ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define ll long long
#define endl '\n'
using namespace std;
int main()
{
optimize();
ll n,c=0;
cin>>n;
while(n!=0)
{
if(n>=3)n-=3;
else n-=2;
c++;
}
cout<<c<<endl;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1106 too easy or three easy
- Contest
- Brain Booster #6
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-10-03 17:01:47
- Judged At
- 2024-11-11 02:46:53
- Judged By
- Score
- 70
- Total Time
- ≥1092ms
- Peak Memory
- ≥764.0 KiB