結果

問題 No.1717 Levi-Civita Triangle
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-23 14:23:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 116,564 KB
最終ジャッジ日時 2024-09-25 05:26:51
合計ジャッジ時間 4,493 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,204 KB
testcase_01 AC 37 ms
52,832 KB
testcase_02 AC 37 ms
53,632 KB
testcase_03 AC 37 ms
52,740 KB
testcase_04 AC 37 ms
53,084 KB
testcase_05 AC 46 ms
62,552 KB
testcase_06 AC 95 ms
78,080 KB
testcase_07 AC 117 ms
92,568 KB
testcase_08 AC 37 ms
51,936 KB
testcase_09 AC 37 ms
52,952 KB
testcase_10 AC 46 ms
64,564 KB
testcase_11 AC 91 ms
76,632 KB
testcase_12 AC 103 ms
84,368 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 38 ms
54,184 KB
testcase_15 AC 42 ms
58,628 KB
testcase_16 AC 55 ms
68,832 KB
testcase_17 AC 95 ms
106,796 KB
testcase_18 AC 37 ms
53,012 KB
testcase_19 AC 38 ms
52,772 KB
testcase_20 AC 41 ms
58,868 KB
testcase_21 AC 55 ms
69,436 KB
testcase_22 AC 83 ms
97,176 KB
testcase_23 AC 37 ms
52,896 KB
testcase_24 AC 37 ms
52,952 KB
testcase_25 AC 50 ms
64,896 KB
testcase_26 AC 52 ms
66,772 KB
testcase_27 AC 62 ms
77,336 KB
testcase_28 AC 36 ms
53,716 KB
testcase_29 AC 36 ms
53,100 KB
testcase_30 AC 47 ms
63,332 KB
testcase_31 AC 54 ms
67,240 KB
testcase_32 AC 96 ms
106,652 KB
testcase_33 AC 102 ms
103,720 KB
testcase_34 AC 103 ms
116,564 KB
testcase_35 AC 101 ms
103,768 KB
testcase_36 AC 103 ms
103,688 KB
testcase_37 AC 102 ms
103,776 KB
testcase_38 AC 102 ms
104,360 KB
testcase_39 AC 102 ms
114,948 KB
testcase_40 AC 103 ms
104,340 KB
testcase_41 AC 102 ms
103,600 KB
testcase_42 AC 105 ms
104,124 KB
testcase_43 AC 102 ms
103,796 KB
testcase_44 AC 105 ms
103,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
for i in range(2*n-1):

    x,y,z = A[i],A[i+1],A[i+2]
    if (x,y,z) in ((0,1,2),(1,2,0),(2,0,1)):
        A[i] = 1
    elif (x,y,z) in ((0,2,1),(2,1,0),(1,0,2)):
        A[i] = 2
    else:
        A[i] = 0
n -= 1
if n%2:
    one = [2,0,1,0]*(n//2)+[2,0,1]
    two = [1,0,2,0]*(n//2)+[1,0,2]

else:
    one = [1,0,2,0]*(n//2)+[1]
    two = [2,0,1,0]*(n//2)+[2]

if A[:-2] == one:
    print(1)
elif A[:-2] == two:
    print(2)
else:
    print(0)
0