143592025-01-10 17:22:08duongtamas01Járdakövezés (75 pont)cpp17Accepted 75/752ms616 KiB
#include <iostream>

using namespace std;

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