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();
int 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:00:05
- Judged At
- 2024-11-11 02:47:03
- Judged By
- Score
- 70
- Total Time
- ≥1093ms
- Peak Memory
- ≥364.0 KiB