Submission #1534067


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

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

  int n;
  long long a;
  vector<long long> v;
  cin >> n;
  for (int i = 0; i < n; i++) {
    cin >> a;
    v.push_back(a);
  }
  do {
    bool flag = true;
    for (int i = 0; i < n-1; i++) {
      //cout << v[i] << ' ' << v[i+1] << endl;
      if ((v[i]*v[i+1]) % 4 != 0) {
        flag = false;
        break;
      }
    }
    if (flag) {
      cout << "Yes" << endl; return 0;
    }
  } while(next_permutation(v.begin(), v.end()));

  cout << "No" << endl;

  return 0;
}

Submission Info

Submission Time
Task C - 4-adjacent
User moko_freedom
Language C++14 (GCC 5.4.1)
Score 0
Code Size 619 Byte
Status WA
Exec Time 2103 ms
Memory 1400 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 5
AC × 13
WA × 1
TLE × 5
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt
Case Name Status Exec Time Memory
0_00.txt AC 1 ms 256 KB
0_01.txt AC 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
0_03.txt AC 1 ms 256 KB
0_04.txt AC 1 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 1 ms 256 KB
1_03.txt WA 1 ms 256 KB
1_04.txt AC 1 ms 256 KB
1_05.txt AC 1 ms 256 KB
1_06.txt AC 1 ms 256 KB
1_07.txt TLE 2103 ms 1400 KB
1_08.txt AC 12 ms 1400 KB
1_09.txt AC 11 ms 1400 KB
1_10.txt TLE 2103 ms 1400 KB
1_11.txt TLE 2103 ms 1400 KB
1_12.txt TLE 2103 ms 1400 KB
1_13.txt TLE 2103 ms 1400 KB