144952025-01-12 19:58:05sarminJárdakövezés (75 pont)cpp17Accepted 75/751ms508 KiB
// Created by Armin on 1/12/2025.
// See on https://njudge.hu/problemset/main/NT24_Jardakovezes/

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pp = pair<int, int>;

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