/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 552.0 KiB
#2 Time Exceeded ≥1009ms ≥488.0 KiB
#3 Accepted 3ms 492.0 KiB
#4 Accepted 2ms 488.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;

int main(){

int n; cin>>n;

int cnt=0;


while(n>0){

if(n>=2){

    if(n>=3){

        n-=3;
        cnt++;
        if(n==0){
            break;

        }
    }
    else{
        n-=2;
        cnt++;
        if(n==0){
            break;
        }
    }
}

}

cout<<cnt<<endl;

}

Information

Submit By
Type
Submission
Problem
P1106 too easy or three easy
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-05 14:49:56
Judged At
2024-11-11 02:32:25
Judged By
Score
70
Total Time
≥1009ms
Peak Memory
≥552.0 KiB