/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 532.0 KiB
#2 Time Exceeded ≥1000ms ≥484.0 KiB
#3 Time Exceeded ≥1099ms ≥324.0 KiB
#4 Accepted 1ms 532.0 KiB

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-10-03 15:33:21
Judged By
Score
40
Total Time
≥1099ms
Peak Memory
≥532.0 KiB