답안 #631868

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
631868 2022-08-19T03:40:28 Z ntarsis 메기 농장 (IOI22_fish) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;

int main() {
	int n,m; cin >> n >> m;
	long long nums[m][2];
	long long weights[m];
	for (int i = 0; i < m; i++){
		cin >> nums[i][0] >> nums[i][1];
		cin >> weights[i];
	}
	long long ans = 0;
	for (int i : weights) ans += i;
	cout << ans << "\n";
}

Compilation message

/usr/bin/ld: /tmp/ccDU0hFd.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccw1eP9b.o:fish.cpp:(.text.startup+0x0): first defined here
/usr/bin/ld: /tmp/ccDU0hFd.o: in function `main':
grader.cpp:(.text.startup+0x25e): undefined reference to `max_weights(int, int, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status