結果

問題 No.1717 Levi-Civita Triangle
ユーザー hir355hir355
提出日時 2021-10-22 22:58:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-09-23 06:50:53
合計ジャッジ時間 4,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,784 KB
testcase_01 AC 38 ms
53,284 KB
testcase_02 AC 38 ms
52,888 KB
testcase_03 AC 38 ms
52,288 KB
testcase_04 AC 38 ms
53,684 KB
testcase_05 AC 43 ms
60,032 KB
testcase_06 AC 53 ms
67,268 KB
testcase_07 AC 72 ms
87,072 KB
testcase_08 AC 37 ms
52,744 KB
testcase_09 AC 37 ms
52,272 KB
testcase_10 AC 45 ms
62,068 KB
testcase_11 AC 55 ms
68,164 KB
testcase_12 AC 63 ms
77,192 KB
testcase_13 AC 38 ms
53,100 KB
testcase_14 AC 37 ms
52,424 KB
testcase_15 AC 39 ms
53,004 KB
testcase_16 AC 53 ms
65,688 KB
testcase_17 AC 78 ms
93,620 KB
testcase_18 AC 38 ms
53,312 KB
testcase_19 AC 38 ms
52,852 KB
testcase_20 AC 39 ms
53,772 KB
testcase_21 AC 51 ms
65,256 KB
testcase_22 AC 71 ms
86,460 KB
testcase_23 AC 38 ms
52,440 KB
testcase_24 AC 39 ms
52,456 KB
testcase_25 AC 47 ms
61,552 KB
testcase_26 AC 50 ms
64,548 KB
testcase_27 AC 57 ms
71,296 KB
testcase_28 AC 37 ms
52,628 KB
testcase_29 AC 37 ms
53,072 KB
testcase_30 AC 45 ms
61,560 KB
testcase_31 AC 51 ms
66,456 KB
testcase_32 AC 79 ms
95,620 KB
testcase_33 AC 86 ms
103,936 KB
testcase_34 AC 86 ms
103,372 KB
testcase_35 AC 85 ms
103,652 KB
testcase_36 AC 85 ms
102,100 KB
testcase_37 AC 86 ms
103,052 KB
testcase_38 AC 85 ms
102,680 KB
testcase_39 AC 84 ms
102,760 KB
testcase_40 AC 85 ms
102,972 KB
testcase_41 AC 85 ms
103,552 KB
testcase_42 AC 87 ms
102,864 KB
testcase_43 AC 86 ms
102,524 KB
testcase_44 AC 86 ms
103,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = [0] * (2 * n - 1)
for i in range(2 * n - 1):
    if (a[i] + 1) % 3 == a[i + 1] and (a[i + 1] + 1) % 3 == a[i + 2]:
        b[i] = 1
    elif (a[i] - 1) % 3 == a[i + 1] and (a[i + 1] - 1) % 3 == a[i + 2]:
        b[i] = 2
n -= 1
for i in range(n):
    if b[i * 2 + 1] != 0:
        print(0)
        exit(0)
    if b[i * 2] == 0 or b[i * 2 + 2] == 0 or b[i * 2] == b[i * 2 + 2]:
        print(0)
        exit(0)
else:
    if (b[0] == 1) ^ (n & 1):
        print(1)
    else:
        print(2)
0