답안 #680474

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
680474 2023-01-11T00:07:09 Z aabbfc21 메기 농장 (IOI22_fish) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>

using namespace std;

int main() {
	int n, m;
    long long sum = 0;
    cin >> n >> m;
    for (int i = 0; i < m; i++) {
    	int x, y, z;
    	cin >> x >> y >> z;
        sum += z;
    }
    cout << z << "\n";
}

Compilation message

fish.cpp: In function 'int main()':
fish.cpp:14:13: error: 'z' was not declared in this scope
   14 |     cout << z << "\n";
      |             ^