結果

問題 No.1183 コイン遊び
ユーザー hiragnhiragn
提出日時 2022-11-22 15:40:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,828 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 93,352 KB
最終ジャッジ日時 2024-09-23 00:44:13
合計ジャッジ時間 48,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 513 ms
44,324 KB
testcase_01 AC 505 ms
44,316 KB
testcase_02 AC 510 ms
44,320 KB
testcase_03 AC 511 ms
44,328 KB
testcase_04 AC 522 ms
44,064 KB
testcase_05 AC 511 ms
44,324 KB
testcase_06 AC 517 ms
44,312 KB
testcase_07 AC 508 ms
43,928 KB
testcase_08 AC 511 ms
44,072 KB
testcase_09 AC 510 ms
44,192 KB
testcase_10 AC 538 ms
43,932 KB
testcase_11 AC 584 ms
44,196 KB
testcase_12 AC 1,251 ms
68,296 KB
testcase_13 AC 1,172 ms
64,972 KB
testcase_14 AC 1,617 ms
82,488 KB
testcase_15 AC 1,704 ms
85,576 KB
testcase_16 AC 1,701 ms
85,196 KB
testcase_17 AC 1,697 ms
85,288 KB
testcase_18 AC 1,690 ms
86,012 KB
testcase_19 AC 1,697 ms
86,228 KB
testcase_20 AC 1,695 ms
85,412 KB
testcase_21 AC 1,691 ms
79,344 KB
testcase_22 AC 1,691 ms
78,652 KB
testcase_23 AC 1,662 ms
79,004 KB
testcase_24 AC 1,722 ms
78,504 KB
testcase_25 AC 1,719 ms
85,788 KB
testcase_26 AC 1,692 ms
86,692 KB
testcase_27 AC 1,693 ms
85,552 KB
testcase_28 AC 1,828 ms
85,916 KB
testcase_29 AC 1,703 ms
79,980 KB
testcase_30 AC 1,713 ms
93,352 KB
testcase_31 AC 1,728 ms
85,556 KB
testcase_32 AC 1,682 ms
85,628 KB
testcase_33 AC 1,693 ms
86,184 KB
testcase_34 AC 1,694 ms
85,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def main():
    n = int(input())
    a = list(map(int, input().split()))
    b = list(map(int, input().split()))

    arr = [0] + list(map(int, np.logical_xor(a, b)))
    ans = len([i for i in range(n) if arr[i:i + 2] == [0, 1]])
    print(ans)


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