結果

問題 No.1183 コイン遊び
ユーザー ThetaTheta
提出日時 2022-10-18 13:11:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,272 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 63,528 KB
最終ジャッジ日時 2024-06-28 21:57:27
合計ジャッジ時間 37,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 439 ms
43,928 KB
testcase_01 AC 448 ms
43,940 KB
testcase_02 AC 446 ms
44,184 KB
testcase_03 AC 456 ms
44,060 KB
testcase_04 AC 444 ms
44,060 KB
testcase_05 AC 442 ms
44,060 KB
testcase_06 AC 448 ms
43,816 KB
testcase_07 AC 445 ms
43,936 KB
testcase_08 AC 454 ms
44,180 KB
testcase_09 AC 446 ms
43,932 KB
testcase_10 AC 452 ms
44,316 KB
testcase_11 AC 515 ms
43,932 KB
testcase_12 AC 966 ms
54,336 KB
testcase_13 AC 869 ms
53,116 KB
testcase_14 AC 1,170 ms
61,612 KB
testcase_15 AC 1,218 ms
62,760 KB
testcase_16 AC 1,250 ms
63,032 KB
testcase_17 AC 1,221 ms
63,420 KB
testcase_18 AC 1,259 ms
63,244 KB
testcase_19 AC 1,230 ms
63,284 KB
testcase_20 AC 1,240 ms
63,332 KB
testcase_21 AC 1,166 ms
62,840 KB
testcase_22 AC 1,161 ms
63,260 KB
testcase_23 AC 1,165 ms
63,296 KB
testcase_24 AC 1,178 ms
63,384 KB
testcase_25 AC 1,236 ms
63,528 KB
testcase_26 AC 1,219 ms
63,144 KB
testcase_27 AC 1,229 ms
62,896 KB
testcase_28 AC 1,261 ms
63,264 KB
testcase_29 AC 1,156 ms
63,392 KB
testcase_30 AC 1,271 ms
63,416 KB
testcase_31 AC 1,224 ms
63,392 KB
testcase_32 AC 1,272 ms
63,528 KB
testcase_33 AC 1,242 ms
63,156 KB
testcase_34 AC 1,235 ms
63,148 KB
権限があれば一括ダウンロードができます

ソースコード

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())))

    AB_diff = (A == B).tolist()

    left_idx = 0

    ctr = 0

    while left_idx < N:
        try:
            left_idx = AB_diff.index(False, left_idx)
        except ValueError:
            break
        ctr += 1
        try:
            left_idx = AB_diff.index(True, left_idx)
        except ValueError:
            break
    print(ctr)


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