結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
54,032 KB
testcase_01 AC 119 ms
53,928 KB
testcase_02 AC 117 ms
54,160 KB
testcase_03 AC 104 ms
52,856 KB
testcase_04 AC 102 ms
52,712 KB
testcase_05 AC 115 ms
54,396 KB
testcase_06 AC 113 ms
53,920 KB
testcase_07 AC 111 ms
54,268 KB
testcase_08 WA -
testcase_09 AC 113 ms
54,032 KB
testcase_10 AC 114 ms
54,220 KB
testcase_11 WA -
testcase_12 AC 114 ms
54,036 KB
testcase_13 AC 103 ms
52,904 KB
testcase_14 AC 316 ms
61,576 KB
testcase_15 AC 334 ms
61,728 KB
testcase_16 AC 319 ms
61,432 KB
testcase_17 AC 322 ms
61,712 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 338 ms
61,436 KB
testcase_21 AC 329 ms
61,600 KB
testcase_22 AC 313 ms
61,676 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 365 ms
61,576 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 345 ms
61,464 KB
testcase_29 AC 339 ms
61,588 KB
testcase_30 WA -
testcase_31 AC 312 ms
61,656 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();
        int ans = 0;
        for(int i=0;i<n;i++) {
            if(s.charAt(i) != t.charAt(n-i-1)) ans++;
        }
        output.print(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