結果

問題 No.2209 Flip and Reverse
ユーザー lllllll88938494lllllll88938494
提出日時 2023-03-24 19:57:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,584 KB
実行使用メモリ 80,052 KB
最終ジャッジ日時 2023-10-18 20:35:03
合計ジャッジ時間 3,639 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,432 KB
testcase_01 AC 37 ms
53,432 KB
testcase_02 AC 37 ms
53,432 KB
testcase_03 WA -
testcase_04 AC 38 ms
53,432 KB
testcase_05 AC 37 ms
53,432 KB
testcase_06 AC 37 ms
53,432 KB
testcase_07 AC 38 ms
53,432 KB
testcase_08 AC 65 ms
80,040 KB
testcase_09 AC 38 ms
53,432 KB
testcase_10 AC 36 ms
53,432 KB
testcase_11 AC 37 ms
53,432 KB
testcase_12 AC 37 ms
53,432 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 73 ms
80,052 KB
testcase_19 AC 72 ms
80,052 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 73 ms
80,052 KB
testcase_24 AC 70 ms
80,052 KB
testcase_25 WA -
testcase_26 AC 71 ms
80,052 KB
testcase_27 AC 71 ms
80,052 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 66 ms
80,052 KB
testcase_31 WA -
testcase_32 AC 66 ms
79,908 KB
testcase_33 AC 66 ms
80,052 KB
権限があれば一括ダウンロードができます

ソースコード

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