답안 #1100213

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1100213 2024-10-13T09:56:45 Z vjudge1 Coin Collecting (JOI19_ho_t4) C++17
0 / 100
1 ms 336 KB
#include <bits/stdc++.h>
using namespace std;
const int N = 1e5 + 5;
int main()
{
    int n, k = 0;
    cin >> n;
    vector<int> a(3);
    for(int i = 0; i < n * 2; i++)
    {
        int x, y;
        cin >> x >> y;
        x = max(1, min(n, x));
        y = max(1, min(2, y));
        a[y]++;
    }
    int x1 = a[1] - n;
    int x2 = a[2] - n;
    k += abs(x1) + abs(x2);
    cout << k;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB Output isn't correct
3 Halted 0 ms 0 KB -