Wrong Answer
Code
#include <bits/stdc++.h>
#define int long long
#define fast ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
#define endl '\n'
#define sp " "
using namespace std;
int32_t main()
{
fast
int n;cin>>n;
int cnt = 0;
while(n >= 3){
n -= 3;
cnt++;
}
while(n >= 2){
n -= 2;
cnt++;
}
cout << cnt;
return 0;
}
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:57:29
- Judged At
- 2024-11-11 02:45:19
- Judged By
- Score
- 70
- Total Time
- 2ms
- Peak Memory
- 544.0 KiB