답안 #732379

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
732379 2023-04-29T03:06:26 Z vjudge1 Cipele (COCI18_cipele) C++17
18 / 90
38 ms 3100 KB
#include <bits/stdc++.h>
#define sts stable_sort
#define B begin()
#define rB rbegin()
#define E end()
#define rE rend()
#define F first
#define S second
#define pb push_back
#define ppb pop_back()
#define pf push_front
#define ppf pop_front()
#define eb emplace_back
#define ll long long
#define ui unsigned int
#define ull unsigned long long

using namespace std;

const int MAXN = 500004;
const int MOD = 1e9 + 7;
const ll INF = 9223372036854775807LL;
const ll inf = 2147483647;

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

    int n, m; cin >> n >> m;
    vector<int> v(n), b(m);

    for(int i = 0; i < n; i++){
        cin >> v[i];
    }
    sts(v.B, v.E);
    for(int i = 0; i < n; i++){
        cin >> b[i];
    }
    sts(b.B, b.E);

    int maxi = 0;
    for(int i = 0; i < n; i++){
        maxi = max(maxi, abs(v[i] - b[i]));
    }cout << maxi << "\n";

    return 0;
}
/**



**/
# 결과 실행 시간 메모리 Grader output
1 Correct 20 ms 2912 KB Output is correct
2 Correct 38 ms 3100 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 36 ms 3008 KB Output is correct
2 Correct 36 ms 3080 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 328 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 26 ms 2484 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 30 ms 2732 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 24 ms 2468 KB Output isn't correct
2 Halted 0 ms 0 KB -