結果

問題 No.1717 Levi-Civita Triangle
ユーザー kyskys
提出日時 2021-10-22 22:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,054 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,668 KB
実行使用メモリ 117,268 KB
最終ジャッジ日時 2023-10-24 14:08:06
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,416 KB
testcase_01 AC 34 ms
53,416 KB
testcase_02 AC 34 ms
53,416 KB
testcase_03 AC 34 ms
53,416 KB
testcase_04 AC 34 ms
53,416 KB
testcase_05 AC 41 ms
62,192 KB
testcase_06 AC 94 ms
76,536 KB
testcase_07 AC 119 ms
91,636 KB
testcase_08 AC 35 ms
53,416 KB
testcase_09 AC 34 ms
53,416 KB
testcase_10 AC 44 ms
62,268 KB
testcase_11 AC 93 ms
76,372 KB
testcase_12 AC 103 ms
83,480 KB
testcase_13 AC 34 ms
53,416 KB
testcase_14 AC 34 ms
53,416 KB
testcase_15 AC 35 ms
53,416 KB
testcase_16 AC 53 ms
68,500 KB
testcase_17 AC 90 ms
107,540 KB
testcase_18 AC 35 ms
53,416 KB
testcase_19 AC 35 ms
53,416 KB
testcase_20 AC 35 ms
53,416 KB
testcase_21 AC 52 ms
68,492 KB
testcase_22 AC 78 ms
95,284 KB
testcase_23 AC 38 ms
53,416 KB
testcase_24 AC 38 ms
53,416 KB
testcase_25 AC 50 ms
64,348 KB
testcase_26 AC 52 ms
66,452 KB
testcase_27 AC 62 ms
77,292 KB
testcase_28 AC 38 ms
53,416 KB
testcase_29 AC 34 ms
53,416 KB
testcase_30 AC 42 ms
62,188 KB
testcase_31 AC 53 ms
68,516 KB
testcase_32 AC 95 ms
109,280 KB
testcase_33 AC 101 ms
103,012 KB
testcase_34 AC 101 ms
103,012 KB
testcase_35 AC 103 ms
117,268 KB
testcase_36 AC 101 ms
103,012 KB
testcase_37 AC 100 ms
103,012 KB
testcase_38 AC 100 ms
103,012 KB
testcase_39 AC 101 ms
103,012 KB
testcase_40 AC 101 ms
103,012 KB
testcase_41 AC 100 ms
103,012 KB
testcase_42 AC 102 ms
117,268 KB
testcase_43 AC 100 ms
103,012 KB
testcase_44 AC 100 ms
103,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def iinput(): return int(input())
def sinput(): return input().rstrip()
def i0input(): return int(input()) - 1
def linput(): return list(input().split())
def liinput(): return list(map(int, input().split()))
def miinput(): return map(int, input().split())
def li0input(): return list(map(lambda x: int(x) - 1, input().split()))
def mi0input(): return map(lambda x: int(x) - 1, input().split())
INF = 10**20
MOD = 1000000007

def levi(x):
    if x == (0, 1, 2) or x == (1, 2, 0) or x == (2, 0, 1):
        return 1
    elif x == (2, 1, 0) or x == (1, 0, 2) or x == (0, 2, 1):
        return 2
    else:
        return 0
N = iinput()
P = liinput()
Q = []
for i in range(2 * N - 1):
    Q.append(levi((P[i], P[i + 1], P[i + 2])))

if len(Q) == 1:
    print(Q[0])
    exit(0)

for q in Q[1::2]:
    if q != 0:
        exit(print(0))

for q, r in zip(Q[::2], Q[2::2]):
    if q == r or q == 0 or r == 0:
        exit(print(0))

if N % 2:
    print(Q[0])
else:
    if Q[0] == 1:
        print(2)
    else:
        print(1)
0