結果

問題 No.1183 コイン遊び
ユーザー kikagekikage
提出日時 2021-08-15 14:05:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,816 KB
最終ジャッジ日時 2024-10-07 14:43:54
合計ジャッジ時間 17,549 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 37 ms
11,264 KB
testcase_11 AC 62 ms
12,864 KB
testcase_12 AC 402 ms
31,532 KB
testcase_13 AC 361 ms
29,140 KB
testcase_14 AC 588 ms
41,740 KB
testcase_15 AC 630 ms
43,956 KB
testcase_16 AC 628 ms
44,400 KB
testcase_17 AC 614 ms
43,804 KB
testcase_18 AC 633 ms
43,912 KB
testcase_19 AC 638 ms
44,476 KB
testcase_20 AC 628 ms
43,944 KB
testcase_21 AC 600 ms
43,824 KB
testcase_22 AC 608 ms
44,296 KB
testcase_23 AC 624 ms
43,744 KB
testcase_24 AC 612 ms
43,856 KB
testcase_25 AC 632 ms
44,816 KB
testcase_26 AC 634 ms
43,644 KB
testcase_27 AC 632 ms
44,552 KB
testcase_28 AC 631 ms
44,504 KB
testcase_29 AC 584 ms
44,380 KB
testcase_30 AC 634 ms
43,940 KB
testcase_31 AC 630 ms
43,924 KB
testcase_32 AC 633 ms
43,712 KB
testcase_33 AC 643 ms
43,860 KB
testcase_34 AC 635 ms
43,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=[A[i]^B[i] for i in  range(N)]+[1-A[N-1]^B[N-1]]
D=[C[i] for i in range(N) if C[i]!=C[i+1] ]
print(D.count(1))
0