답안 #647175

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
647175 2022-10-01T18:31:24 Z a_aguilo 전선 연결 (IOI17_wiring) C++14
0 / 100
1 ms 212 KB
#include "wiring.h"
#include<bits/stdc++.h>

using namespace std;

long long min_total_length(vector<int> r, vector<int> b) {
	long long ans = 0;
	int n = r.size(); int m = b.size();
	for(int i = 0; i < min(n, m); ++i){
        ans += b[i] - r[n-1-i];
	}
	if(m == n) return ans;
	if(m > n){
        for(int i = n; i < m; ++i){
            ans+= b[i] - r[n-1];
        }
        return ans;
	}
	else{
        for(int i = m; i < n; ++i){
            ans+= b[0]-r[i];
        }
        return ans;
	}

}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '25859', found: '-14364'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '904', found: '711'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '17703', found: '-19052'
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '27', found: '12'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '25859', found: '-14364'
2 Halted 0 ms 0 KB -