結果

問題 No.2209 Flip and Reverse
ユーザー hamigakiko0721hamigakiko0721
提出日時 2023-02-10 21:41:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 289 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 201,648 KB
実行使用メモリ 7,188 KB
最終ジャッジ日時 2024-07-07 15:53:03
合計ジャッジ時間 4,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 50 ms
7,180 KB
testcase_15 AC 50 ms
7,056 KB
testcase_16 AC 50 ms
7,184 KB
testcase_17 AC 51 ms
7,096 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 50 ms
7,060 KB
testcase_21 AC 50 ms
7,056 KB
testcase_22 AC 51 ms
7,060 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 49 ms
7,056 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 46 ms
7,084 KB
testcase_29 AC 46 ms
7,060 KB
testcase_30 WA -
testcase_31 AC 46 ms
7,184 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define all(x) (x).begin(), (x).end()
#define rep(i,n) for(int i = 0; i < (n); ++i)

int main(){
  int N; cin >> N;
  string S, T; cin >> S >> T;
  reverse(all(S));

  int ans = 0;
  rep(i, N) if(S[i]!=T[i]) ans++;
  cout << ans << endl;
}

  
0