結果
問題 | No.1717 Levi-Civita Triangle |
ユーザー | SSRS |
提出日時 | 2021-10-22 21:42:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,053 bytes |
コンパイル時間 | 1,583 ms |
コンパイル使用メモリ | 169,200 KB |
実行使用メモリ | 13,764 KB |
最終ジャッジ日時 | 2024-09-23 05:02:30 |
合計ジャッジ時間 | 5,597 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,764 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 5 ms
6,944 KB |
testcase_07 | AC | 21 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 4 ms
6,944 KB |
testcase_12 | AC | 13 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 3 ms
6,944 KB |
testcase_16 | AC | 136 ms
6,940 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N; cin >> N; vector<int> A(N * 2 + 1); for (int i = 0; i <= N * 2; i++){ cin >> A[i]; } while (true){ int M = A.size(); if (M == 1){ cout << A[0] << endl; break; } bool ok = false; for (int i = 0; i < M - 1; i++){ if (A[i] == A[i + 1]){ ok = true; } } if (ok){ cout << 0 << endl; break; } vector<int> B(M - 2); for (int i = 0; i < M - 2; i++){ if (A[i] == 0 && A[i + 1] == 1 && A[i + 2] == 2){ B[i] = 1; } else if (A[i] == 1 && A[i + 1] == 2 && A[i + 2] == 0){ B[i] = 1; } else if (A[i] == 2 && A[i + 1] == 0 && A[i + 2] == 1){ B[i] = 1; } else if (A[i] == 2 && A[i + 1] == 1 && A[i + 2] == 0){ B[i] = 2; } else if (A[i] == 1 && A[i + 1] == 0 && A[i + 2] == 2){ B[i] = 2; } else if (A[i] == 0 && A[i + 1] == 2 && A[i + 2] == 1){ B[i] = 2; } else { B[i] = 0; } } swap(A, B); } }