結果

問題 No.2209 Flip and Reverse
ユーザー lllllll88938494
提出日時 2023-03-24 19:57:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,984 KB
最終ジャッジ日時 2024-09-18 16:35:19
合計ジャッジ時間 3,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 18 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
t=input()

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