답안 #567258

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
567258 2022-05-23T09:49:08 Z haxorman Kitchen (BOI19_kitchen) C++14
0 / 100
2 ms 212 KB
#include <bits/stdc++.h>
using namespace std;

const int mxN = 307;

int a[mxN], b[mxN];

int32_t main() {
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);

	int n, m, k;
	cin >> n >> m >> k;

	if (m < k) {
		cout << "Impossible\n";
		exit(0);
	}

	for (int i = 0; i < n; ++i) {
		cin >> a[i];
	}

	for (int i = 0; i < m; ++i) {
		cin >> b[i];
	}

	if (k == 1) {
		int ans = 0;
		for (int i = 0; i < n; ++i) {
			int mn = INT_MAX;
			for (int j = 0; j < m; ++j) {
				mn = min(mn, a[i] % b[j]);
			}
			ans += mn;
		}
		cout << ans << "\n";
	}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -