/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 332.0 KiB
#2 Accepted 2ms 616.0 KiB
#3 Accepted 2ms 344.0 KiB
#4 Accepted 2ms 328.0 KiB

Code

#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
int main() {
    int n, r, d; cin >> n;
    r = n%3;
    d = n/3;
    if(r == 1) cout << (d-1) + 2;
    else if(r == 0) cout << d << endl;
    else if(r == 2) cout << (d + 1) << endl;

    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 16:05:08
Judged At
2024-12-17 11:35:26
Judged By
Score
100
Total Time
2ms
Peak Memory
616.0 KiB