結果

問題 No.1183 コイン遊び
ユーザー vwxyzvwxyz
提出日時 2022-09-06 22:52:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 595 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,052 KB
最終ジャッジ日時 2024-05-01 17:30:26
合計ジャッジ時間 16,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 36 ms
11,392 KB
testcase_11 AC 59 ms
12,776 KB
testcase_12 AC 364 ms
32,616 KB
testcase_13 AC 329 ms
30,296 KB
testcase_14 AC 522 ms
43,740 KB
testcase_15 AC 545 ms
45,904 KB
testcase_16 AC 557 ms
45,864 KB
testcase_17 AC 569 ms
46,052 KB
testcase_18 AC 574 ms
45,792 KB
testcase_19 AC 570 ms
45,848 KB
testcase_20 AC 555 ms
45,924 KB
testcase_21 AC 542 ms
45,788 KB
testcase_22 AC 549 ms
45,920 KB
testcase_23 AC 565 ms
46,048 KB
testcase_24 AC 562 ms
45,916 KB
testcase_25 AC 586 ms
45,916 KB
testcase_26 AC 595 ms
45,792 KB
testcase_27 AC 586 ms
46,036 KB
testcase_28 AC 590 ms
45,916 KB
testcase_29 AC 556 ms
45,892 KB
testcase_30 AC 550 ms
45,920 KB
testcase_31 AC 564 ms
45,920 KB
testcase_32 AC 581 ms
45,792 KB
testcase_33 AC 555 ms
45,964 KB
testcase_34 AC 555 ms
46,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
write=sys.stdout.write
from math import gcd as GCD
import math

N=int(readline())
A=list(map(int,readline().split()))
B=list(map(int,readline().split()))
AB=[0]+[a^b for a,b in zip(A,B)]+[0]
ans=sum(AB[i]^AB[i+1] for i in range(N+1))//2
print(ans)
0