結果

問題 No.2209 Flip and Reverse
ユーザー chankei271828chankei271828
提出日時 2023-02-10 21:37:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 174,724 KB
最終ジャッジ日時 2024-07-07 15:48:59
合計ジャッジ時間 5,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 33 ms
51,712 KB
testcase_07 AC 34 ms
51,712 KB
testcase_08 WA -
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 34 ms
51,712 KB
testcase_11 WA -
testcase_12 AC 34 ms
51,712 KB
testcase_13 AC 32 ms
52,096 KB
testcase_14 AC 186 ms
173,972 KB
testcase_15 AC 168 ms
174,320 KB
testcase_16 AC 166 ms
173,980 KB
testcase_17 AC 166 ms
173,908 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 164 ms
174,192 KB
testcase_21 AC 164 ms
174,020 KB
testcase_22 AC 165 ms
174,200 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 164 ms
174,328 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 153 ms
173,916 KB
testcase_29 AC 159 ms
174,076 KB
testcase_30 WA -
testcase_31 AC 156 ms
174,328 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