結果

問題 No.1183 コイン遊び
ユーザー match1997match1997
提出日時 2020-10-07 08:22:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 914 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 39,976 KB
最終ジャッジ日時 2024-07-20 03:14:40
合計ジャッジ時間 22,006 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 44 ms
11,264 KB
testcase_11 AC 76 ms
12,228 KB
testcase_12 AC 534 ms
29,136 KB
testcase_13 AC 497 ms
26,948 KB
testcase_14 AC 794 ms
34,368 KB
testcase_15 AC 837 ms
39,976 KB
testcase_16 AC 823 ms
36,008 KB
testcase_17 AC 805 ms
35,944 KB
testcase_18 AC 879 ms
35,944 KB
testcase_19 AC 854 ms
35,996 KB
testcase_20 AC 830 ms
35,948 KB
testcase_21 AC 768 ms
35,948 KB
testcase_22 AC 751 ms
36,144 KB
testcase_23 AC 756 ms
36,032 KB
testcase_24 AC 787 ms
35,960 KB
testcase_25 AC 880 ms
36,160 KB
testcase_26 AC 822 ms
36,160 KB
testcase_27 AC 839 ms
35,944 KB
testcase_28 AC 864 ms
36,076 KB
testcase_29 AC 847 ms
36,032 KB
testcase_30 AC 914 ms
36,160 KB
testcase_31 AC 843 ms
36,012 KB
testcase_32 AC 832 ms
35,816 KB
testcase_33 AC 848 ms
35,952 KB
testcase_34 AC 857 ms
39,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
*A, = map(int,(input().split()))
*B, = map(int,(input().split()))
if A[0] == B[0]:
    count=0
else:
    count=1
    
for i in range(N-1):
    if A[i]==B[i]:
        if A[i]==B[i] and A[i+1] != B[i+1]:
            count +=1
    else:
        if A[i] != B[i] and A[i+1] == B[i+1]:
            count +=0
print(count)  
0