結果

問題 No.2209 Flip and Reverse
ユーザー shobonvipshobonvip
提出日時 2023-02-10 21:29:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 80,744 KB
最終ジャッジ日時 2024-07-07 15:40:01
合計ジャッジ時間 3,056 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,824 KB
testcase_01 AC 35 ms
52,956 KB
testcase_02 AC 32 ms
52,904 KB
testcase_03 AC 33 ms
53,212 KB
testcase_04 AC 33 ms
52,548 KB
testcase_05 AC 33 ms
53,460 KB
testcase_06 AC 35 ms
52,156 KB
testcase_07 AC 33 ms
52,284 KB
testcase_08 AC 58 ms
80,212 KB
testcase_09 AC 33 ms
52,356 KB
testcase_10 AC 33 ms
52,948 KB
testcase_11 AC 31 ms
52,016 KB
testcase_12 AC 32 ms
52,456 KB
testcase_13 AC 36 ms
52,624 KB
testcase_14 AC 67 ms
80,744 KB
testcase_15 AC 67 ms
80,276 KB
testcase_16 AC 65 ms
80,160 KB
testcase_17 AC 67 ms
80,620 KB
testcase_18 AC 65 ms
80,200 KB
testcase_19 AC 67 ms
80,628 KB
testcase_20 AC 66 ms
80,568 KB
testcase_21 AC 67 ms
80,396 KB
testcase_22 AC 65 ms
80,356 KB
testcase_23 AC 66 ms
80,456 KB
testcase_24 AC 64 ms
80,312 KB
testcase_25 AC 66 ms
80,144 KB
testcase_26 AC 63 ms
80,296 KB
testcase_27 AC 64 ms
80,276 KB
testcase_28 AC 61 ms
80,600 KB
testcase_29 AC 58 ms
80,232 KB
testcase_30 AC 60 ms
80,484 KB
testcase_31 AC 58 ms
80,644 KB
testcase_32 AC 58 ms
80,676 KB
testcase_33 AC 58 ms
80,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
t = input()
if s.count("1") % 2 == t.count("1") % 2:
	# EVEN
	ans = 0
	for i in range(n):
		if s[i] != t[i]:
			ans += 1
	print(ans)
else:
	# ODD
	ans = 0
	for i in range(n):
		if s[i] != t[n-i-1]:
			ans += 1
	print(ans)
0