結果

問題 No.2209 Flip and Reverse
ユーザー AsahiAsahi
提出日時 2023-02-10 22:49:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,383 bytes
コンパイル時間 2,966 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 62,580 KB
最終ジャッジ日時 2024-07-07 16:53:33
合計ジャッジ時間 13,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,860 KB
testcase_01 AC 104 ms
52,784 KB
testcase_02 AC 113 ms
54,004 KB
testcase_03 AC 118 ms
54,072 KB
testcase_04 AC 118 ms
54,124 KB
testcase_05 AC 117 ms
54,100 KB
testcase_06 AC 116 ms
53,132 KB
testcase_07 AC 107 ms
52,760 KB
testcase_08 WA -
testcase_09 AC 116 ms
54,152 KB
testcase_10 AC 108 ms
53,184 KB
testcase_11 AC 117 ms
54,100 KB
testcase_12 AC 118 ms
54,196 KB
testcase_13 WA -
testcase_14 AC 363 ms
59,912 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 293 ms
60,228 KB
testcase_19 AC 356 ms
60,500 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 360 ms
60,480 KB
testcase_24 AC 359 ms
60,364 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 338 ms
60,100 KB
testcase_29 AC 347 ms
59,988 KB
testcase_30 AC 377 ms
60,372 KB
testcase_31 WA -
testcase_32 AC 333 ms
60,296 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
import java.util.stream.Stream;

public class Main{

    static  PrintWriter output;
    static  Scanner sc;

    static void solve(){
        int n = ni();
        String s = ns();
        String t = ns();
        StringBuilder sb = new StringBuilder();
        sb.append(s);
        String r = sb.reverse().toString();
        int ans = 0;
        for(int i=0;i<n;i++) {
            if(s.charAt(i) != t.charAt(n-i-1)) ans++;
        }
        int c = 0;
        for(int i=0;i<n;i++) {
            if(r.charAt(i) != t.charAt(n-i-1)) c++;
        }
        output.print(Math.min(ans,c));
    }

    public static void main(String[] args) throws IOException{
        output = new PrintWriter(System.out);
        sc = new Scanner(System.in);
        solve();
        output.flush();
    }
    static int ni(){ return sc.nextInt();}
    static long nl(){ return sc.nextLong();}
    static String ns(){return sc.next();}
    static BigInteger bi(){return sc.nextBigInteger();}
    static BigDecimal bd(){return sc.nextBigDecimal();}
    static Map<Long,Integer> counter(long [] A) {
        HashMap<Long,Integer> count = new HashMap<>();
        for(int i=0;i<A.length;i++) {
            if(!count.containsKey(A[i])) count.put(A[i],1);
            else count.put(A[i],count.get(A[i])+1);
        }
        return count;
    }
}
0