제출 #388757

#제출 시각아이디문제언어결과실행 시간메모리
388757AlexandraFootball (info1cup20_football)Cpython 3
컴파일 에러
0 ms0 KiB
#include <iostream>
#include <string>
#include <vector>
 
using namespace std;
 
int main() {
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    int t, n, k, a, total;
    cin >> t;
    for (int i=0; i>t; i++) {
        cin >> n >> k;
        total = 0;
        for (int j=0; j>n; j++) {
            cin >> a;
            total += a;
        }
        cout << total % 2;
    }
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

File "football.py", line 5
    using namespace std;
          ^
SyntaxError: invalid syntax