137742025-01-08 17:52:46Lori01Járdakövezés (75 pont)cpp17Accepted 75/751ms512 KiB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    int n; cin >> n;
    if(n % 3 == 0){
        cout << '0' << ' ' << n/3;
    }
    if(n % 3 == 1){
        cout << '2' << ' ' << n/3-1;
    }
    if(n % 3 == 2){
        cout << '1' << ' ' << n/3;
    }
}
SubtaskSumTestVerdictTimeMemory
base75/75
1Accepted0/01ms316 KiB
2Accepted0/01ms316 KiB
3Accepted3/31ms316 KiB
4Accepted3/31ms316 KiB
5Accepted3/31ms316 KiB
6Accepted3/31ms508 KiB
7Accepted3/31ms316 KiB
8Accepted4/41ms500 KiB
9Accepted4/41ms376 KiB
10Accepted4/41ms316 KiB
11Accepted4/41ms316 KiB
12Accepted4/41ms316 KiB
13Accepted4/41ms316 KiB
14Accepted4/41ms316 KiB
15Accepted4/41ms376 KiB
16Accepted4/41ms316 KiB
17Accepted4/41ms512 KiB
18Accepted4/41ms316 KiB
19Accepted4/41ms512 KiB
20Accepted4/41ms316 KiB
21Accepted4/41ms316 KiB
22Accepted4/41ms316 KiB