結果

問題 No.2209 Flip and Reverse
ユーザー ShirotsumeShirotsume
提出日時 2022-12-27 00:56:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 81,208 KB
最終ジャッジ日時 2024-05-01 17:42:53
合計ジャッジ時間 3,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,996 KB
testcase_01 AC 43 ms
54,124 KB
testcase_02 AC 40 ms
54,720 KB
testcase_03 AC 40 ms
54,052 KB
testcase_04 AC 40 ms
54,212 KB
testcase_05 AC 40 ms
54,380 KB
testcase_06 AC 41 ms
54,796 KB
testcase_07 AC 40 ms
53,828 KB
testcase_08 AC 70 ms
80,912 KB
testcase_09 AC 40 ms
55,312 KB
testcase_10 AC 40 ms
54,492 KB
testcase_11 AC 40 ms
53,292 KB
testcase_12 AC 40 ms
55,040 KB
testcase_13 AC 40 ms
54,588 KB
testcase_14 AC 79 ms
80,872 KB
testcase_15 AC 80 ms
80,840 KB
testcase_16 AC 78 ms
81,008 KB
testcase_17 AC 79 ms
80,612 KB
testcase_18 AC 78 ms
81,028 KB
testcase_19 AC 77 ms
81,012 KB
testcase_20 AC 79 ms
80,460 KB
testcase_21 AC 79 ms
81,208 KB
testcase_22 AC 79 ms
80,800 KB
testcase_23 AC 79 ms
80,680 KB
testcase_24 AC 77 ms
80,544 KB
testcase_25 AC 78 ms
80,688 KB
testcase_26 AC 79 ms
80,480 KB
testcase_27 AC 76 ms
81,056 KB
testcase_28 AC 72 ms
80,448 KB
testcase_29 AC 72 ms
80,932 KB
testcase_30 AC 70 ms
81,008 KB
testcase_31 AC 71 ms
80,792 KB
testcase_32 AC 70 ms
81,040 KB
testcase_33 AC 69 ms
81,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
sys.setrecursionlimit(5 * 10 ** 5)
from pypyjit import set_param
set_param('max_unroll_recursion=-1')
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
n = ii()
s = input()
t = input()

if s.count('1') % 2 == t.count('1') % 2:
    cnt = 0
    for i in range(n):
        if s[i] != t[i]:
            cnt += 1
    print(cnt)

if s.count('1') % 2 != t.count('1') % 2:
    cnt = 0
    for i in range(n):
        if s[n - i - 1] != t[i]:
            cnt += 1
    print(cnt)
0