結果

問題 No.2209 Flip and Reverse
ユーザー tentententen
提出日時 2023-02-14 09:57:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 2,106 bytes
コンパイル時間 3,376 ms
コンパイル使用メモリ 80,732 KB
実行使用メモリ 49,884 KB
最終ジャッジ日時 2023-09-23 19:21:02
合計ジャッジ時間 13,436 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
33,544 KB
testcase_01 AC 37 ms
33,760 KB
testcase_02 AC 37 ms
33,384 KB
testcase_03 AC 37 ms
33,776 KB
testcase_04 AC 37 ms
33,388 KB
testcase_05 AC 36 ms
33,284 KB
testcase_06 AC 37 ms
33,716 KB
testcase_07 AC 37 ms
33,512 KB
testcase_08 AC 267 ms
45,000 KB
testcase_09 AC 36 ms
33,332 KB
testcase_10 AC 35 ms
33,412 KB
testcase_11 AC 36 ms
33,772 KB
testcase_12 AC 36 ms
33,656 KB
testcase_13 AC 37 ms
33,388 KB
testcase_14 AC 289 ms
47,316 KB
testcase_15 AC 312 ms
49,884 KB
testcase_16 AC 293 ms
46,456 KB
testcase_17 AC 308 ms
49,772 KB
testcase_18 AC 235 ms
45,408 KB
testcase_19 AC 247 ms
45,120 KB
testcase_20 AC 272 ms
48,204 KB
testcase_21 AC 333 ms
48,276 KB
testcase_22 AC 274 ms
46,584 KB
testcase_23 AC 232 ms
45,160 KB
testcase_24 AC 228 ms
45,564 KB
testcase_25 AC 266 ms
49,292 KB
testcase_26 AC 219 ms
44,436 KB
testcase_27 AC 235 ms
44,856 KB
testcase_28 AC 316 ms
49,840 KB
testcase_29 AC 289 ms
48,200 KB
testcase_30 AC 271 ms
45,772 KB
testcase_31 AC 253 ms
47,268 KB
testcase_32 AC 238 ms
45,528 KB
testcase_33 AC 226 ms
45,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] s = sc.next().toCharArray();
        int sCount = 0;
        for (char c : s) {
            if (c == '1') {
                sCount++;
            }
        }
        char[] t = sc.next().toCharArray();
        int tCount = 0;
        for (char c : t) {
            if (c == '1') {
                tCount++;
            }
        }
        if (Math.abs(sCount - tCount) % 2 == 1) {
            t = new StringBuilder(new String(t)).reverse().toString().toCharArray();
        }
        int ans = 0;
        for (int i = 0; i < n; i++) {
            if (s[i] != t[i]) {
                ans++;
            }
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0