Time Exceeded
Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define all(a) a.begin(),a.end()
#define endl '\n'
int main()
{
ios::sync_with_stdio(0); cin.tie(0);
ll n;cin>>n;
ll ct=0;
while(n){
if(n-3!=1)n-=3;
else n-=2;
ct++;
}
cout<<ct<<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 15:33:21
- Judged At
- 2024-12-17 11:36:54
- Judged By
- Score
- 10
- Total Time
- ≥1094ms
- Peak Memory
- ≥536.0 KiB