結果

問題 No.1717 Levi-Civita Triangle
ユーザー rlangevinrlangevin
提出日時 2024-02-02 12:34:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 97,152 KB
最終ジャッジ日時 2024-09-28 10:34:47
合計ジャッジ時間 3,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 41 ms
58,240 KB
testcase_06 AC 44 ms
61,312 KB
testcase_07 AC 62 ms
81,152 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 40 ms
52,480 KB
testcase_10 AC 42 ms
57,856 KB
testcase_11 AC 43 ms
61,156 KB
testcase_12 AC 52 ms
70,912 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 43 ms
61,200 KB
testcase_17 AC 69 ms
88,832 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 44 ms
61,184 KB
testcase_22 AC 61 ms
80,128 KB
testcase_23 AC 38 ms
52,480 KB
testcase_24 AC 39 ms
52,480 KB
testcase_25 AC 44 ms
59,372 KB
testcase_26 AC 44 ms
59,904 KB
testcase_27 AC 50 ms
67,200 KB
testcase_28 AC 38 ms
51,840 KB
testcase_29 AC 38 ms
52,096 KB
testcase_30 AC 44 ms
58,880 KB
testcase_31 AC 44 ms
60,800 KB
testcase_32 AC 68 ms
89,216 KB
testcase_33 AC 74 ms
96,512 KB
testcase_34 AC 75 ms
96,512 KB
testcase_35 AC 75 ms
96,512 KB
testcase_36 AC 75 ms
97,024 KB
testcase_37 AC 75 ms
97,152 KB
testcase_38 AC 75 ms
96,640 KB
testcase_39 AC 75 ms
96,896 KB
testcase_40 AC 75 ms
96,768 KB
testcase_41 AC 75 ms
96,896 KB
testcase_42 AC 74 ms
96,768 KB
testcase_43 AC 74 ms
96,896 KB
testcase_44 AC 73 ms
97,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(t):
    if t in [[0,1,2],[1,2,0],[2,0,1]]:
        return 1
    elif t in [[2,1,0],[1,0,2],[0,2,1]]:
        return 2
    return 0

N = int(input())
A = list(map(int, input().split()))
if N == 1:
    print(f(A))
    exit()
    
ans = [-1] * 4
for i in range(2 * N + 1):
    if A[i] != ans[i%4] and ans[i%4] != -1:
        print(0)
        exit()
    ans[i%4] = A[i]
    
if ans in [[0,1,2,1],[1,2,0,2],[2,0,1,0]]:
    if N % 2:
        print(1)
    else:
        print(2)
elif ans in [[0,2,1,2],[1,0,2,0],[2,1,0,1]]:
    if N % 2:
        print(2)
    else:
        print(1)
else:
    print(0)
0