結果

問題 No.1717 Levi-Civita Triangle
ユーザー 👑 rin204rin204
提出日時 2024-05-06 15:06:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 152,560 KB
最終ジャッジ日時 2024-11-28 22:30:07
合計ジャッジ時間 5,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,220 KB
testcase_01 AC 39 ms
52,892 KB
testcase_02 AC 39 ms
53,012 KB
testcase_03 AC 40 ms
52,468 KB
testcase_04 AC 39 ms
53,484 KB
testcase_05 AC 47 ms
60,480 KB
testcase_06 AC 53 ms
71,572 KB
testcase_07 AC 112 ms
135,484 KB
testcase_08 AC 38 ms
52,884 KB
testcase_09 AC 39 ms
51,624 KB
testcase_10 AC 46 ms
60,908 KB
testcase_11 AC 52 ms
72,164 KB
testcase_12 AC 78 ms
103,660 KB
testcase_13 AC 40 ms
52,272 KB
testcase_14 AC 40 ms
52,368 KB
testcase_15 AC 40 ms
52,844 KB
testcase_16 AC 49 ms
67,544 KB
testcase_17 AC 103 ms
126,516 KB
testcase_18 AC 39 ms
53,004 KB
testcase_19 AC 39 ms
52,608 KB
testcase_20 AC 42 ms
59,672 KB
testcase_21 AC 44 ms
63,712 KB
testcase_22 AC 70 ms
92,100 KB
testcase_23 AC 38 ms
52,688 KB
testcase_24 AC 38 ms
52,416 KB
testcase_25 AC 44 ms
60,356 KB
testcase_26 AC 47 ms
63,956 KB
testcase_27 AC 63 ms
83,180 KB
testcase_28 AC 38 ms
52,492 KB
testcase_29 AC 39 ms
52,672 KB
testcase_30 AC 46 ms
61,888 KB
testcase_31 AC 49 ms
67,492 KB
testcase_32 AC 132 ms
152,560 KB
testcase_33 AC 122 ms
146,448 KB
testcase_34 AC 140 ms
146,660 KB
testcase_35 AC 96 ms
117,796 KB
testcase_36 AC 151 ms
146,744 KB
testcase_37 AC 109 ms
132,108 KB
testcase_38 AC 127 ms
146,944 KB
testcase_39 AC 141 ms
146,628 KB
testcase_40 AC 121 ms
146,700 KB
testcase_41 AC 152 ms
146,672 KB
testcase_42 AC 96 ms
117,796 KB
testcase_43 AC 128 ms
146,396 KB
testcase_44 AC 108 ms
132,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(3):
    X = [i, (i + 1) % 3, (i + 2) % 3]
    for _ in range(n - 1):
        X.append(X[-2])
        X.append(X[-4])

    if A == X:
        print(2 - n % 2)
        exit()

for i in range(3):
    X = [i, (i - 1) % 3, (i - 2) % 3]
    for _ in range(n - 1):
        X.append(X[-2])
        X.append(X[-4])

    if A == X:
        print(1 + n % 2)
        exit()

print(0)
0