結果

問題 No.1183 コイン遊び
ユーザー TakoKurageTakoKurage
提出日時 2020-11-24 14:34:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 941 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 112,576 KB
最終ジャッジ日時 2024-07-23 18:39:06
合計ジャッジ時間 22,737 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 46 ms
12,540 KB
testcase_11 AC 81 ms
16,536 KB
testcase_12 AC 583 ms
74,168 KB
testcase_13 AC 521 ms
67,100 KB
testcase_14 AC 854 ms
105,676 KB
testcase_15 AC 917 ms
112,388 KB
testcase_16 AC 930 ms
112,316 KB
testcase_17 AC 930 ms
112,192 KB
testcase_18 AC 941 ms
112,452 KB
testcase_19 AC 902 ms
112,576 KB
testcase_20 AC 907 ms
112,324 KB
testcase_21 AC 897 ms
112,176 KB
testcase_22 AC 884 ms
112,452 KB
testcase_23 AC 875 ms
112,324 KB
testcase_24 AC 893 ms
112,412 KB
testcase_25 AC 898 ms
112,452 KB
testcase_26 AC 910 ms
112,328 KB
testcase_27 AC 923 ms
112,196 KB
testcase_28 AC 909 ms
112,456 KB
testcase_29 AC 908 ms
112,408 KB
testcase_30 AC 934 ms
112,324 KB
testcase_31 AC 923 ms
112,408 KB
testcase_32 AC 913 ms
112,324 KB
testcase_33 AC 917 ms
112,320 KB
testcase_34 AC 932 ms
112,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, *AB = map(int, open(0).read().split())
AB = list(zip(AB[:N], AB[N:]))

a, b = AB[0]
ans = a ^ b
for (a1, b1), (a2, b2) in zip(AB, AB[1:]):
    if a1 == b1 and a2 != b2:
        ans += 1

print(ans)
0