結果

問題 No.1183 コイン遊び
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2023-06-30 23:31:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 910 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,020 KB
最終ジャッジ日時 2024-07-07 11:24:33
合計ジャッジ時間 22,130 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 28 ms
10,368 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 28 ms
10,496 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 47 ms
11,136 KB
testcase_11 AC 81 ms
12,096 KB
testcase_12 AC 523 ms
26,364 KB
testcase_13 AC 474 ms
24,504 KB
testcase_14 AC 767 ms
34,352 KB
testcase_15 AC 851 ms
36,004 KB
testcase_16 AC 859 ms
35,760 KB
testcase_17 AC 849 ms
35,760 KB
testcase_18 AC 861 ms
36,020 KB
testcase_19 AC 851 ms
35,764 KB
testcase_20 AC 851 ms
36,020 KB
testcase_21 AC 778 ms
36,020 KB
testcase_22 AC 763 ms
35,760 KB
testcase_23 AC 761 ms
35,764 KB
testcase_24 AC 796 ms
35,896 KB
testcase_25 AC 853 ms
35,768 KB
testcase_26 AC 848 ms
36,020 KB
testcase_27 AC 819 ms
35,760 KB
testcase_28 AC 837 ms
36,020 KB
testcase_29 AC 805 ms
36,008 KB
testcase_30 AC 910 ms
35,892 KB
testcase_31 AC 841 ms
35,768 KB
testcase_32 AC 894 ms
35,888 KB
testcase_33 AC 855 ms
36,012 KB
testcase_34 AC 841 ms
35,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a, b = [[*map(int, input().split())] for _ in range(2)]

for i, bi in enumerate(b):
    a[i] = (a[i] + bi) % 2

flg = True
cnt = 0
while len(a) > 0:
    if a.pop() == 1:
        if flg:
            cnt += 1
            flg = False
    else:
        flg = True

print(cnt)
0