結果

問題 No.1717 Levi-Civita Triangle
ユーザー ir5ir5
提出日時 2024-06-14 20:04:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 84,432 KB
最終ジャッジ日時 2024-06-14 20:05:17
合計ジャッジ時間 31,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 652 ms
44,496 KB
testcase_01 AC 521 ms
44,372 KB
testcase_02 AC 523 ms
44,624 KB
testcase_03 AC 559 ms
44,244 KB
testcase_04 AC 536 ms
44,888 KB
testcase_05 AC 546 ms
44,628 KB
testcase_06 AC 521 ms
44,504 KB
testcase_07 AC 580 ms
45,312 KB
testcase_08 AC 520 ms
44,756 KB
testcase_09 AC 554 ms
44,116 KB
testcase_10 AC 532 ms
44,500 KB
testcase_11 AC 532 ms
44,500 KB
testcase_12 AC 556 ms
44,624 KB
testcase_13 AC 541 ms
44,508 KB
testcase_14 AC 551 ms
44,244 KB
testcase_15 AC 544 ms
44,624 KB
testcase_16 AC 552 ms
44,628 KB
testcase_17 AC 604 ms
46,200 KB
testcase_18 AC 544 ms
44,512 KB
testcase_19 AC 521 ms
44,504 KB
testcase_20 AC 577 ms
44,368 KB
testcase_21 AC 546 ms
44,500 KB
testcase_22 AC 582 ms
44,476 KB
testcase_23 AC 544 ms
44,632 KB
testcase_24 AC 554 ms
44,624 KB
testcase_25 AC 544 ms
44,624 KB
testcase_26 AC 529 ms
44,508 KB
testcase_27 AC 567 ms
44,248 KB
testcase_28 AC 540 ms
44,624 KB
testcase_29 AC 549 ms
44,248 KB
testcase_30 AC 525 ms
44,240 KB
testcase_31 AC 546 ms
44,244 KB
testcase_32 AC 570 ms
46,092 KB
testcase_33 AC 610 ms
47,192 KB
testcase_34 AC 585 ms
47,316 KB
testcase_35 AC 671 ms
47,064 KB
testcase_36 AC 583 ms
47,060 KB
testcase_37 AC 609 ms
47,192 KB
testcase_38 AC 596 ms
47,188 KB
testcase_39 AC 630 ms
47,448 KB
testcase_40 AC 605 ms
46,928 KB
testcase_41 AC 631 ms
47,096 KB
testcase_42 AC 600 ms
47,064 KB
testcase_43 AC 617 ms
47,192 KB
testcase_44 AC 591 ms
84,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def conv(xs):
    n = xs.shape[0]
    ys = np.zeros(n - 2, dtype=np.int32)
    d0 = xs[0:-2] - xs[1:-1]
    d1 = xs[1:-1] - xs[2:]
    d0 = (d0 + 3) % 3
    d1 = (d1 + 3) % 3

    ys[(d0 == 1) * (d1 == 1)] = 2
    ys[(d0 == 2) * (d1 == 2)] = 1

    return ys


def main():
    n = int(input())
    xs = np.array(list(map(int, input().split())), dtype=np.int32)

    xs = conv(xs)

    if n == 1:
        return xs[0]

    # 1 0 2 0 1 0 2 0 1
    #   2 0 1 0 2 0 1

    r = (len(xs) - 1) // 2
    if not np.all(xs[1::2] == 0):
        return 0

    if (
        np.all(xs[0::4] == 1) and np.all(xs[2::4] == 2)
    ) or (
        np.all(xs[0::4] == 2) and np.all(xs[2::4] == 1)
    ):
        if r % 2 == 0:
            return xs[0]
        else:
            return 3 - xs[0]

    return 0


print(main())
0