結果

問題 No.2209 Flip and Reverse
ユーザー AsahiAsahi
提出日時 2023-02-10 22:56:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,363 bytes
コンパイル時間 2,552 ms
コンパイル使用メモリ 81,484 KB
実行使用メモリ 61,724 KB
最終ジャッジ日時 2024-07-07 16:59:35
合計ジャッジ時間 12,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,292 KB
testcase_01 AC 101 ms
41,300 KB
testcase_02 AC 115 ms
41,364 KB
testcase_03 AC 113 ms
41,528 KB
testcase_04 AC 117 ms
41,504 KB
testcase_05 AC 114 ms
41,564 KB
testcase_06 AC 116 ms
41,592 KB
testcase_07 AC 108 ms
41,556 KB
testcase_08 WA -
testcase_09 AC 103 ms
41,456 KB
testcase_10 AC 104 ms
41,740 KB
testcase_11 WA -
testcase_12 AC 103 ms
50,156 KB
testcase_13 AC 113 ms
41,540 KB
testcase_14 AC 339 ms
49,532 KB
testcase_15 AC 326 ms
49,656 KB
testcase_16 AC 365 ms
49,536 KB
testcase_17 AC 359 ms
49,652 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 355 ms
49,676 KB
testcase_21 AC 345 ms
49,608 KB
testcase_22 AC 340 ms
49,632 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 335 ms
49,412 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 360 ms
49,512 KB
testcase_29 AC 357 ms
49,428 KB
testcase_30 WA -
testcase_31 AC 350 ms
49,296 KB
testcase_32 WA -
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;
        int same = 0;
        for(int i=0;i<n;i++) {
            if(s.charAt(i) != t.charAt(n-i-1)) ans++;
            if(r.charAt(i) == s.charAt(i)) same++;
        }
        output.print(same == n && !r.equals(t)? n : ans);
    }

    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