結果

問題 No.1717 Levi-Civita Triangle
ユーザー kyskys
提出日時 2021-10-22 22:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,054 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 117,816 KB
最終ジャッジ日時 2024-09-23 06:29:07
合計ジャッジ時間 4,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,892 KB
testcase_01 AC 39 ms
52,564 KB
testcase_02 AC 39 ms
53,076 KB
testcase_03 AC 39 ms
53,692 KB
testcase_04 AC 38 ms
52,620 KB
testcase_05 AC 45 ms
61,256 KB
testcase_06 AC 96 ms
76,756 KB
testcase_07 AC 123 ms
91,956 KB
testcase_08 AC 37 ms
51,940 KB
testcase_09 AC 38 ms
52,308 KB
testcase_10 AC 48 ms
63,020 KB
testcase_11 AC 95 ms
76,664 KB
testcase_12 AC 105 ms
84,336 KB
testcase_13 AC 37 ms
53,568 KB
testcase_14 AC 38 ms
52,884 KB
testcase_15 AC 40 ms
54,364 KB
testcase_16 AC 56 ms
69,296 KB
testcase_17 AC 94 ms
107,888 KB
testcase_18 AC 38 ms
53,096 KB
testcase_19 AC 38 ms
52,932 KB
testcase_20 AC 39 ms
53,072 KB
testcase_21 AC 56 ms
69,440 KB
testcase_22 AC 80 ms
96,012 KB
testcase_23 AC 38 ms
54,344 KB
testcase_24 AC 38 ms
52,608 KB
testcase_25 AC 50 ms
62,576 KB
testcase_26 AC 56 ms
66,860 KB
testcase_27 AC 65 ms
77,968 KB
testcase_28 AC 37 ms
53,072 KB
testcase_29 AC 37 ms
53,380 KB
testcase_30 AC 46 ms
62,140 KB
testcase_31 AC 56 ms
68,464 KB
testcase_32 AC 97 ms
110,180 KB
testcase_33 AC 104 ms
103,148 KB
testcase_34 AC 104 ms
103,204 KB
testcase_35 AC 106 ms
117,816 KB
testcase_36 AC 103 ms
103,344 KB
testcase_37 AC 104 ms
103,428 KB
testcase_38 AC 101 ms
103,104 KB
testcase_39 AC 103 ms
103,172 KB
testcase_40 AC 103 ms
103,200 KB
testcase_41 AC 101 ms
102,920 KB
testcase_42 AC 106 ms
117,496 KB
testcase_43 AC 105 ms
103,340 KB
testcase_44 AC 105 ms
103,696 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