結果

問題 No.1717 Levi-Civita Triangle
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-10-22 23:54:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 148,072 KB
最終ジャッジ日時 2024-09-24 07:12:47
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,756 KB
testcase_01 AC 36 ms
52,284 KB
testcase_02 AC 37 ms
52,120 KB
testcase_03 AC 36 ms
53,000 KB
testcase_04 AC 36 ms
52,404 KB
testcase_05 AC 44 ms
62,544 KB
testcase_06 AC 55 ms
75,368 KB
testcase_07 AC 111 ms
123,996 KB
testcase_08 AC 36 ms
52,496 KB
testcase_09 AC 36 ms
52,980 KB
testcase_10 AC 45 ms
62,836 KB
testcase_11 AC 53 ms
74,652 KB
testcase_12 AC 84 ms
107,740 KB
testcase_13 AC 36 ms
53,928 KB
testcase_14 AC 37 ms
53,444 KB
testcase_15 AC 37 ms
53,160 KB
testcase_16 AC 52 ms
73,016 KB
testcase_17 AC 110 ms
128,488 KB
testcase_18 AC 36 ms
52,960 KB
testcase_19 AC 37 ms
53,296 KB
testcase_20 AC 40 ms
60,052 KB
testcase_21 AC 48 ms
67,500 KB
testcase_22 AC 78 ms
102,844 KB
testcase_23 AC 36 ms
52,140 KB
testcase_24 AC 36 ms
52,940 KB
testcase_25 AC 47 ms
63,172 KB
testcase_26 AC 48 ms
65,920 KB
testcase_27 AC 72 ms
94,244 KB
testcase_28 AC 36 ms
53,108 KB
testcase_29 AC 36 ms
52,964 KB
testcase_30 AC 45 ms
62,244 KB
testcase_31 AC 50 ms
70,088 KB
testcase_32 AC 117 ms
128,684 KB
testcase_33 AC 128 ms
130,852 KB
testcase_34 AC 149 ms
134,660 KB
testcase_35 AC 110 ms
130,660 KB
testcase_36 AC 138 ms
131,128 KB
testcase_37 AC 116 ms
130,776 KB
testcase_38 AC 162 ms
148,072 KB
testcase_39 AC 149 ms
134,656 KB
testcase_40 AC 128 ms
131,008 KB
testcase_41 AC 138 ms
130,780 KB
testcase_42 AC 110 ms
131,032 KB
testcase_43 AC 161 ms
147,964 KB
testcase_44 AC 117 ms
131,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m=2*n+1
x=list(map(int,input().split()))

one=[(0,1,2),(1,2,0),(2,0,1)]
two=[(2,1,0),(1,0,2),(0,2,1)]
def f(x):

    while len(x)>1:
        y=[]
        for i in range(len(x)-2):
            tup=(x[i],x[i+1],x[i+2])
            if tup in one:y.append(1)
            elif tup in two:y.append(2)
            else:y.append(0)
        x=y
    return x[0]

res=[]


for i in range(m):
    if len(res)==0:res.append(0)
    elif res[-1]==0:res.append(1)
    elif res[-1]==2:res.append(1)
    else:
        if res[-2]==0:res.append(2)
        else:res.append(0)

p=[(0,1,2),(1,2,0),(2,0,1),(2,1,0),(1,0,2),(0,2,1)]


for tup in p:
    res1=[]
    for i in range(m):
        res1.append(tup[res[i]])
    if x==res1:
        y=tuple((res1[:3]))
        if y in one:ans=1
        else:ans=2
        if n%2==0:ans=3-ans

        print(ans)

        exit()




print(0)

0