結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 43 ms
11,264 KB
testcase_11 AC 65 ms
12,652 KB
testcase_12 AC 388 ms
32,484 KB
testcase_13 AC 348 ms
30,168 KB
testcase_14 AC 566 ms
43,484 KB
testcase_15 AC 604 ms
45,728 KB
testcase_16 AC 609 ms
45,788 KB
testcase_17 AC 605 ms
45,792 KB
testcase_18 AC 607 ms
45,788 KB
testcase_19 AC 607 ms
45,792 KB
testcase_20 AC 607 ms
45,916 KB
testcase_21 AC 597 ms
45,788 KB
testcase_22 AC 592 ms
45,796 KB
testcase_23 AC 615 ms
45,920 KB
testcase_24 AC 613 ms
45,796 KB
testcase_25 AC 609 ms
45,792 KB
testcase_26 AC 603 ms
45,788 KB
testcase_27 AC 733 ms
45,788 KB
testcase_28 AC 697 ms
45,792 KB
testcase_29 AC 600 ms
45,792 KB
testcase_30 AC 606 ms
45,788 KB
testcase_31 AC 612 ms
45,796 KB
testcase_32 AC 608 ms
45,788 KB
testcase_33 AC 606 ms
45,788 KB
testcase_34 AC 610 ms
45,776 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