/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 580.0 KiB
#3 Accepted 2ms 540.0 KiB
#4 Accepted 2ms 336.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define ll long long
#define ld long double
#define ull unsigned long long
#define lcm(a,b) ((a*b)/__gcd(a,b))
const int MOD = 1000000007;

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    
    int n;
    cin >> n;

    if (n % 3 == 0){
        cout << n / 3 << endl;
    }
    else if (n % 3 == 1){
        int s1 = n / 3 - 1;
        s1 = max(0, s1);
        
        cout << s1 + 2 << endl;
    }
    else if (n % 3 == 2){
        int s1 = n / 3;
        cout << s1 + 1 << endl;
    }
}

Information

Submit By
Type
Submission
Problem
P1106 too easy or three easy
Language
C++17 (G++ 13.2.0)
Submit At
2024-10-05 07:33:39
Judged At
2024-10-05 07:33:39
Judged By
Score
100
Total Time
2ms
Peak Memory
580.0 KiB