結果

問題 No.2209 Flip and Reverse
ユーザー chankei271828chankei271828
提出日時 2023-02-10 21:37:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 86,928 KB
実行使用メモリ 173,940 KB
最終ジャッジ日時 2023-09-21 22:42:39
合計ジャッジ時間 7,292 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,072 KB
testcase_01 AC 74 ms
71,168 KB
testcase_02 AC 76 ms
70,976 KB
testcase_03 AC 75 ms
71,112 KB
testcase_04 AC 74 ms
71,352 KB
testcase_05 AC 75 ms
71,288 KB
testcase_06 AC 73 ms
71,108 KB
testcase_07 AC 73 ms
70,788 KB
testcase_08 WA -
testcase_09 AC 76 ms
71,000 KB
testcase_10 AC 76 ms
71,104 KB
testcase_11 WA -
testcase_12 AC 75 ms
71,260 KB
testcase_13 AC 74 ms
71,192 KB
testcase_14 AC 204 ms
173,748 KB
testcase_15 AC 207 ms
173,260 KB
testcase_16 AC 209 ms
173,404 KB
testcase_17 AC 206 ms
173,460 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 205 ms
173,508 KB
testcase_21 AC 207 ms
173,604 KB
testcase_22 AC 204 ms
173,272 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 202 ms
173,492 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 193 ms
173,400 KB
testcase_29 AC 198 ms
173,452 KB
testcase_30 WA -
testcase_31 AC 194 ms
173,668 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=list(input())
T=list(input())
S=list(reversed(S))
cnt=0
for i in range(N):
    if S[i]!=T[i]:
        cnt+=1
print(cnt)
0