結果

問題 No.1717 Levi-Civita Triangle
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-10-22 23:26:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 97,416 KB
最終ジャッジ日時 2024-09-23 07:58:12
合計ジャッジ時間 3,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,008 KB
testcase_01 AC 38 ms
52,944 KB
testcase_02 AC 38 ms
51,940 KB
testcase_03 AC 38 ms
52,548 KB
testcase_04 AC 40 ms
59,088 KB
testcase_05 AC 40 ms
59,888 KB
testcase_06 AC 41 ms
62,168 KB
testcase_07 AC 59 ms
81,488 KB
testcase_08 AC 38 ms
52,312 KB
testcase_09 AC 38 ms
52,084 KB
testcase_10 AC 40 ms
58,860 KB
testcase_11 AC 41 ms
61,744 KB
testcase_12 AC 51 ms
72,568 KB
testcase_13 AC 38 ms
53,316 KB
testcase_14 AC 44 ms
62,312 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
52,740 KB
testcase_19 AC 47 ms
64,432 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 38 ms
52,704 KB
testcase_24 AC 49 ms
64,408 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 37 ms
53,228 KB
testcase_29 AC 47 ms
61,896 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def f(x):
    one=[(0,1,2),(1,2,0),(2,0,1)]
    two=[(2,1,0),(1,0,2),(0,2,1)]
    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]

if len(x)>200:
    print(0)
else:
    print(f(x))
0