結果

問題 No.1717 Levi-Civita Triangle
ユーザー noetherian_ringnoetherian_ring
提出日時 2021-10-22 23:25:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 1,505 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 159,640 KB
最終ジャッジ日時 2024-09-23 07:57:20
合計ジャッジ時間 5,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 42 ms
54,400 KB
testcase_03 AC 41 ms
53,504 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 53 ms
64,512 KB
testcase_06 AC 66 ms
77,908 KB
testcase_07 AC 114 ms
114,516 KB
testcase_08 AC 41 ms
53,760 KB
testcase_09 AC 41 ms
54,120 KB
testcase_10 AC 55 ms
65,664 KB
testcase_11 AC 64 ms
77,568 KB
testcase_12 AC 86 ms
94,208 KB
testcase_13 AC 41 ms
53,632 KB
testcase_14 AC 41 ms
54,528 KB
testcase_15 AC 48 ms
60,928 KB
testcase_16 AC 58 ms
74,112 KB
testcase_17 AC 134 ms
139,348 KB
testcase_18 AC 41 ms
54,084 KB
testcase_19 AC 41 ms
53,760 KB
testcase_20 AC 47 ms
60,160 KB
testcase_21 AC 59 ms
74,112 KB
testcase_22 AC 106 ms
108,144 KB
testcase_23 AC 43 ms
53,632 KB
testcase_24 AC 42 ms
54,144 KB
testcase_25 AC 55 ms
65,664 KB
testcase_26 AC 58 ms
67,456 KB
testcase_27 AC 77 ms
86,116 KB
testcase_28 AC 42 ms
54,272 KB
testcase_29 AC 42 ms
54,016 KB
testcase_30 AC 55 ms
65,152 KB
testcase_31 AC 58 ms
70,784 KB
testcase_32 AC 137 ms
141,288 KB
testcase_33 AC 161 ms
159,260 KB
testcase_34 AC 162 ms
159,384 KB
testcase_35 AC 161 ms
159,432 KB
testcase_36 AC 162 ms
159,432 KB
testcase_37 AC 160 ms
159,264 KB
testcase_38 AC 161 ms
159,628 KB
testcase_39 AC 159 ms
159,584 KB
testcase_40 AC 160 ms
159,260 KB
testcase_41 AC 161 ms
159,324 KB
testcase_42 AC 160 ms
159,460 KB
testcase_43 AC 161 ms
159,340 KB
testcase_44 AC 160 ms
159,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from itertools import repeat
import sys
import os

sys.setrecursionlimit(100000)
is_local = "TERM_PROGRAM" in os.environ
input = sys.stdin.readline
INF = float('inf')
MOD = 998244353

def debug(*args, **kwargs):
    if is_local:
        print(*args, **kwargs)
def I(): return input().rstrip()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return map(int, input().split())
def LIIS(): return list(map(int, input().split()))

jun_map = {0: 1, 1: 2, 2: 0}
rev_map = {0: 2, 2: 1, 1: 0}

def main():
    n = II()
    va = LIIS()
    rev = n % 2 == 0
    one_array = [0]
    two_array = [0]
    cnt = 0
    for _ in range(2*n):
        one_array.append(step(one_array[-1], rev))
        two_array.append(step(two_array[-1], not rev))
        cnt += 1
        if cnt == 2:
            rev = not rev
            cnt = 0

    one_array2 = []
    one_array3 = []
    two_array2 = []
    two_array3 = []
    for i in range(2*n+1):
        one_array2.append(jun_map[one_array[i]])
        one_array3.append(rev_map[one_array[i]])
        two_array2.append(jun_map[two_array[i]])
        two_array3.append(rev_map[two_array[i]])
    if va == one_array or va == one_array2 or va == one_array3:
        print(1)
    elif va == two_array or va == two_array2 or va == two_array3:
        print(2)
    else:
        print(0)


def step(x, rev):
    if rev:
        return rev_map[x]
    else:
        return jun_map[x]


if __name__ == "__main__":
    main()
0