結果

問題 No.1717 Levi-Civita Triangle
ユーザー ああいいああいい
提出日時 2022-06-01 14:06:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 132,232 KB
最終ジャッジ日時 2024-09-21 01:29:56
合計ジャッジ時間 9,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 41 ms
57,088 KB
testcase_05 AC 57 ms
69,504 KB
testcase_06 AC 93 ms
78,592 KB
testcase_07 AC 250 ms
108,704 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 58 ms
71,552 KB
testcase_11 AC 89 ms
77,312 KB
testcase_12 AC 168 ms
92,684 KB
testcase_13 AC 37 ms
51,712 KB
testcase_14 AC 45 ms
59,520 KB
testcase_15 AC 53 ms
65,152 KB
testcase_16 AC 92 ms
76,288 KB
testcase_17 AC 340 ms
115,888 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 48 ms
61,312 KB
testcase_20 AC 51 ms
63,872 KB
testcase_21 AC 91 ms
76,032 KB
testcase_22 AC 284 ms
101,668 KB
testcase_23 AC 39 ms
51,840 KB
testcase_24 AC 50 ms
61,568 KB
testcase_25 AC 65 ms
72,704 KB
testcase_26 AC 73 ms
76,032 KB
testcase_27 AC 143 ms
85,632 KB
testcase_28 AC 36 ms
52,096 KB
testcase_29 AC 44 ms
60,672 KB
testcase_30 AC 61 ms
70,784 KB
testcase_31 AC 82 ms
76,288 KB
testcase_32 AC 363 ms
117,668 KB
testcase_33 AC 432 ms
132,116 KB
testcase_34 AC 454 ms
130,308 KB
testcase_35 AC 436 ms
131,972 KB
testcase_36 AC 450 ms
129,920 KB
testcase_37 AC 440 ms
131,976 KB
testcase_38 AC 437 ms
129,792 KB
testcase_39 AC 435 ms
130,040 KB
testcase_40 AC 448 ms
132,232 KB
testcase_41 AC 441 ms
129,920 KB
testcase_42 AC 427 ms
131,844 KB
testcase_43 AC 432 ms
129,920 KB
testcase_44 AC 437 ms
131,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

s1 = {(0,1,2),(1,2,0),(2,0,1)}
s2 = {(2,1,0),(1,0,2),(0,2,1)}

import sys
def calc(l):
    n = len(l)
    ans = []
    for i in range(1,n - 1):
        if (l[i-1],l[i],l[i+1]) in s1:
            ans.append(1)
        elif (l[i-1],l[i],l[i+1]) in s2:
            ans.append(2)
        else:
            ans.append(0)
    return ans
if N <= 20:
    for _ in range(N):
        A = calc(A)
    print(A[0])
    exit()
else:
    for _ in range(15):
        A = calc(A)
    n = len(A) //2
    if A[n-1] == 0 and A[n] == 0 and A[n + 1] == 0:
        print(0)
    else:
        print(A[-1])
0