結果

問題 No.2629 A replace B replace C
ユーザー tentententen
提出日時 2024-02-21 15:27:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,822 bytes
コンパイル時間 3,358 ms
コンパイル使用メモリ 78,260 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-09-29 04:15:03
合計ジャッジ時間 10,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,100 KB
testcase_01 AC 105 ms
52,108 KB
testcase_02 AC 105 ms
52,084 KB
testcase_03 AC 121 ms
54,088 KB
testcase_04 AC 70 ms
50,812 KB
testcase_05 AC 99 ms
51,980 KB
testcase_06 AC 90 ms
52,024 KB
testcase_07 AC 96 ms
51,904 KB
testcase_08 AC 110 ms
52,176 KB
testcase_09 AC 115 ms
51,840 KB
testcase_10 AC 109 ms
51,740 KB
testcase_11 AC 114 ms
51,540 KB
testcase_12 AC 110 ms
51,832 KB
testcase_13 AC 101 ms
51,960 KB
testcase_14 AC 112 ms
51,792 KB
testcase_15 AC 107 ms
52,200 KB
testcase_16 AC 101 ms
51,740 KB
testcase_17 AC 107 ms
51,676 KB
testcase_18 AC 111 ms
51,932 KB
testcase_19 AC 97 ms
51,916 KB
testcase_20 AC 102 ms
52,032 KB
testcase_21 AC 116 ms
51,936 KB
testcase_22 AC 109 ms
52,108 KB
testcase_23 AC 114 ms
51,908 KB
testcase_24 AC 113 ms
51,796 KB
testcase_25 AC 98 ms
51,968 KB
testcase_26 AC 107 ms
52,104 KB
testcase_27 AC 108 ms
52,204 KB
testcase_28 AC 114 ms
51,564 KB
testcase_29 AC 104 ms
52,004 KB
testcase_30 AC 96 ms
51,968 KB
testcase_31 AC 109 ms
51,784 KB
testcase_32 AC 110 ms
51,984 KB
testcase_33 AC 109 ms
54,260 KB
testcase_34 AC 103 ms
51,568 KB
testcase_35 AC 97 ms
51,704 KB
testcase_36 AC 114 ms
51,908 KB
testcase_37 AC 115 ms
52,092 KB
testcase_38 AC 111 ms
52,088 KB
testcase_39 AC 94 ms
51,796 KB
testcase_40 AC 112 ms
51,960 KB
testcase_41 AC 106 ms
51,952 KB
testcase_42 AC 112 ms
51,916 KB
testcase_43 AC 98 ms
52,072 KB
testcase_44 AC 112 ms
52,028 KB
testcase_45 AC 113 ms
52,212 KB
testcase_46 AC 122 ms
52,172 KB
testcase_47 AC 113 ms
52,272 KB
testcase_48 AC 105 ms
52,196 KB
testcase_49 AC 101 ms
51,936 KB
testcase_50 AC 115 ms
51,880 KB
testcase_51 AC 110 ms
52,064 KB
testcase_52 AC 108 ms
51,824 KB
testcase_53 AC 92 ms
51,524 KB
testcase_54 AC 97 ms
51,932 KB
testcase_55 AC 99 ms
52,056 KB
testcase_56 AC 91 ms
51,892 KB
testcase_57 AC 103 ms
51,988 KB
testcase_58 AC 89 ms
52,084 KB
testcase_59 AC 109 ms
51,964 KB
testcase_60 AC 104 ms
52,048 KB
testcase_61 AC 53 ms
50,316 KB
testcase_62 AC 53 ms
50,268 KB
testcase_63 AC 52 ms
50,156 KB
testcase_64 AC 51 ms
50,032 KB
testcase_65 AC 51 ms
50,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static List<Set<Integer>> graph;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] s = sc.next().toCharArray();
        char[] t = sc.next().toCharArray();
        int ab = 0;
        int ac = 0;
        int bc = 0;
        for (int i = 0; i < n; i++) {
            if (s[i] == t[i]) {
                continue;
            }
            if (s[i] == 'A') {
                if (t[i] == 'B') {
                    ab++;
                } else {
                    ac++;
                }
            } else if (s[i] == 'B' && t[i] == 'C') {
                bc++;
            } else {
                System.out.println("No");
                return;
            }
        }
        System.out.println((ac > 0 && bc == 0) || bc != ab ? "No" : "Yes");
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0