제출 #228941

#제출 시각아이디문제언어결과실행 시간메모리
228941NONAMEKocka (COCI18_kocka)C++17
70 / 70
47 ms1152 KiB
#include <bits/stdc++.h>
#define sz(x) int(x.size())
#define in(x) freopen(x, "r", stdin)
#define out(x) freopen(x, "w", stdout)
#define N 100500
#define oo ll(1e16)
#define ft first
#define sd second
#define pb push_back
#define ppb pop_back
#define el '\n'
#define elf endl
#define base ll(1e9 + 7)
using namespace std;
typedef long long ll;
typedef long double ld;

int n, a[2][N];
bool f = 1;

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

//    in("input.txt");

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

    for (int i = 0; i < n; i++)
        if (a[0][i] + a[1][i] > n || (min(a[0][i], a[1][i]) == -1 && max(a[0][i], a[1][i]) != -1))
            f = 0;

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

    for (int i = 0; i < n; i++)
        if (a[0][i] + a[1][i] > n || (min(a[0][i], a[1][i]) == -1 && max(a[0][i], a[1][i]) != -1))
            f = 0;

    cout << (f ? "DA" : "NE");
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...