Time Exceeded
Code
#include<bits/stdc++.h>
using namespace std;
int main(){
int N; cin>>N;
int T_operation = 0;
while(N--){
if(N%3 == 0){
N-=3;
}
else{
N-=2;
}
T_operation++;
}
cout<<T_operation<<endl;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1106 too easy or three easy
- Contest
- Brain Booster #6
- Language
- C++11 (G++ 13.2.0)
- Submit At
- 2024-10-03 15:50:03
- Judged At
- 2024-12-17 11:35:53
- Judged By
- Score
- 10
- Total Time
- ≥1094ms
- Peak Memory
- ≥532.0 KiB