結果

問題 No.1717 Levi-Civita Triangle
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-10-22 23:47:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 903 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 148,732 KB
最終ジャッジ日時 2024-09-24 07:01:04
合計ジャッジ時間 5,076 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,696 KB
testcase_01 AC 36 ms
53,044 KB
testcase_02 AC 37 ms
53,552 KB
testcase_03 AC 36 ms
52,364 KB
testcase_04 AC 36 ms
53,108 KB
testcase_05 AC 45 ms
61,612 KB
testcase_06 AC 56 ms
76,728 KB
testcase_07 AC 114 ms
124,528 KB
testcase_08 AC 36 ms
52,532 KB
testcase_09 AC 36 ms
53,316 KB
testcase_10 AC 46 ms
63,228 KB
testcase_11 AC 54 ms
74,204 KB
testcase_12 AC 85 ms
108,040 KB
testcase_13 AC 35 ms
52,524 KB
testcase_14 WA -
testcase_15 AC 36 ms
53,196 KB
testcase_16 WA -
testcase_17 AC 110 ms
128,408 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 41 ms
59,520 KB
testcase_21 AC 48 ms
67,676 KB
testcase_22 AC 80 ms
102,988 KB
testcase_23 WA -
testcase_24 AC 36 ms
52,600 KB
testcase_25 AC 46 ms
62,316 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 35 ms
52,132 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 130 ms
131,004 KB
testcase_34 WA -
testcase_35 AC 110 ms
130,944 KB
testcase_36 WA -
testcase_37 AC 119 ms
130,848 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 127 ms
131,044 KB
testcase_41 WA -
testcase_42 AC 107 ms
130,984 KB
testcase_43 WA -
testcase_44 AC 118 ms
131,132 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[:2]))
        if y in one:ans=1
        else:ans=2
        if n%2==0:ans+=1

        if ans%2==1:print(2)
        else:print(1)
        exit()




print(0)

0