답안 #715074

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
715074 2023-03-25T22:07:06 Z Gabriel1219 Logičari (COCI21_logicari) C++11
0 / 110
1 ms 212 KB
#include <bits/stdc++.h>
using namespace std;

int main() {
    int n; cin >> n;
    vector<pair<int, int>> v;
    for (int i = 0; i < n; i++) {
        pair<int, int> point;
        cin >> point.first >> point.second;
        v.push_back(point);
    }
    cout << n/2 << endl;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -