結果

問題 No.2209 Flip and Reverse
ユーザー lllllll88938494lllllll88938494
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,584 KB
testcase_01 AC 32 ms
51,328 KB
testcase_02 AC 31 ms
51,584 KB
testcase_03 WA -
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 32 ms
51,712 KB
testcase_06 AC 36 ms
51,328 KB
testcase_07 AC 32 ms
51,456 KB
testcase_08 AC 57 ms
80,128 KB
testcase_09 AC 33 ms
52,224 KB
testcase_10 AC 32 ms
51,456 KB
testcase_11 AC 32 ms
51,712 KB
testcase_12 AC 32 ms
51,456 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 69 ms
80,028 KB
testcase_19 AC 67 ms
80,256 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 69 ms
80,000 KB
testcase_24 AC 65 ms
79,872 KB
testcase_25 WA -
testcase_26 AC 63 ms
80,512 KB
testcase_27 AC 61 ms
80,408 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 58 ms
80,160 KB
testcase_31 WA -
testcase_32 AC 57 ms
80,128 KB
testcase_33 AC 57 ms
79,872 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