結果

問題 No.1183 コイン遊び
ユーザー KeroruKeroru
提出日時 2020-08-22 14:26:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 369,504 KB
最終ジャッジ日時 2024-10-15 08:42:49
合計ジャッジ時間 16,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,028 KB
testcase_01 AC 37 ms
53,024 KB
testcase_02 AC 38 ms
52,364 KB
testcase_03 AC 38 ms
53,852 KB
testcase_04 AC 38 ms
52,304 KB
testcase_05 AC 38 ms
52,816 KB
testcase_06 AC 38 ms
51,636 KB
testcase_07 AC 38 ms
52,236 KB
testcase_08 AC 42 ms
58,236 KB
testcase_09 AC 42 ms
59,444 KB
testcase_10 AC 58 ms
74,140 KB
testcase_11 AC 85 ms
99,816 KB
testcase_12 AC 408 ms
276,304 KB
testcase_13 AC 388 ms
272,824 KB
testcase_14 AC 625 ms
356,396 KB
testcase_15 AC 815 ms
369,504 KB
testcase_16 AC 628 ms
369,192 KB
testcase_17 AC 616 ms
369,316 KB
testcase_18 AC 615 ms
369,048 KB
testcase_19 AC 609 ms
369,288 KB
testcase_20 AC 598 ms
369,064 KB
testcase_21 AC 585 ms
369,164 KB
testcase_22 AC 608 ms
369,040 KB
testcase_23 AC 570 ms
368,908 KB
testcase_24 AC 577 ms
369,132 KB
testcase_25 AC 596 ms
369,040 KB
testcase_26 AC 607 ms
369,016 KB
testcase_27 AC 636 ms
369,296 KB
testcase_28 AC 603 ms
369,084 KB
testcase_29 AC 575 ms
368,912 KB
testcase_30 AC 590 ms
369,084 KB
testcase_31 AC 607 ms
368,908 KB
testcase_32 AC 607 ms
369,056 KB
testcase_33 AC 606 ms
369,300 KB
testcase_34 AC 600 ms
369,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*t=map(int,open(0).read().split())
d=[a^b for a,b in zip(t,t[n:])]+[0]
print(sum(d[i:i+2]==[1,0]for i in range(n)))
0