結果

問題 No.1183 コイン遊び
ユーザー ThetaTheta
提出日時 2022-10-18 12:11:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 748 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 61,548 KB
最終ジャッジ日時 2024-06-28 20:57:05
合計ジャッジ時間 12,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 450 ms
49,860 KB
testcase_01 AC 445 ms
43,840 KB
testcase_02 AC 448 ms
44,224 KB
testcase_03 AC 435 ms
44,224 KB
testcase_04 AC 446 ms
44,224 KB
testcase_05 AC 442 ms
44,100 KB
testcase_06 AC 467 ms
44,100 KB
testcase_07 AC 479 ms
44,068 KB
testcase_08 AC 462 ms
44,488 KB
testcase_09 AC 461 ms
44,608 KB
testcase_10 AC 639 ms
44,100 KB
testcase_11 AC 1,304 ms
44,104 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def main():
    N = int(input())
    A = np.array(list(map(lambda letter: bool(int(letter)), input().split())))
    B = np.array(list(map(lambda letter: bool(int(letter)), input().split())))

    left_idx = 0
    right_idx = N - 1

    ctr = 0
    while not np.array_equal(A, B):
        if left_idx == right_idx:
            if A[left_idx] != B[left_idx]:
                ctr += 1
            break

        if A[left_idx] == B[left_idx]:
            left_idx += 1
            continue

        if A[right_idx] == B[right_idx]:
            right_idx -= 1
            continue

        A[left_idx:right_idx+1] = np.logical_not(A[left_idx:right_idx+1])

        ctr += 1

    print(ctr)


if __name__ == "__main__":
    main()
0