답안 #62036

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
62036 2018-07-27T09:28:12 Z Mahmoud_Adel 운세 보기 2 (JOI14_fortune_telling2) C++11
0 / 100
4 ms 248 KB
#include <iostream>
#include <climits>

using namespace std;

typedef long long ll;

int main()
{
	int n, k;
	cin >> n >> k;
	int a[n], b[n];
	for(int i=0; i<n; i++)
	cin >> a[i] >> b[i];
	while(k--)
	{
		int x;
		cin >> x;
		for(int i=0; i<n; i++)
		if(a[i] <= x)
		swap(a[i], b[i]);
	}
	int sum = 0;
	for(int i=0; i<n; i++)
	sum += a[i];
	cout << sum << endl;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 248 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 248 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 248 KB Output isn't correct
2 Halted 0 ms 0 KB -