제출 #680474

#제출 시각아이디문제언어결과실행 시간메모리
680474aabbfc21Catfish Farm (IOI22_fish)C++17
컴파일 에러
0 ms0 KiB
#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"; }

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

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