結果
問題 | No.1717 Levi-Civita Triangle |
ユーザー | vjudge1 |
提出日時 | 2024-08-22 10:30:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 519 bytes |
コンパイル時間 | 963 ms |
コンパイル使用メモリ | 68,784 KB |
実行使用メモリ | 13,884 KB |
最終ジャッジ日時 | 2024-08-22 10:30:12 |
合計ジャッジ時間 | 5,470 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,884 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
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 <iostream> #include <cstdio> using namespace std; const int N=1e5+5; int n,a[2*N]; bool calc(){ for(int i=0;i<n;i++) if((a[i]==0)^(i&1)) return true; for(int i=2;i<n;i+=2) if(a[i-2]==a[i]) return true; return false; } void solve(){ scanf("%d",&n); n=n*2+1; for(int i=0;i<n;i++) scanf("%d",&a[i]); if(a[1]){ int x=3-a[1]; for(int i=0;i<n;i++) a[i]=(a[i]+x)%3; } if(calc()) puts("0"); else printf("%d\n",a[n-1]); } int main(){ int T;scanf("%d",&T); while(T--) solve(); return 0; }