結果

問題 No.2629 A replace B replace C
ユーザー tentententen
提出日時 2024-02-21 15:16:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,810 bytes
コンパイル時間 2,901 ms
コンパイル使用メモリ 77,764 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-09-29 04:14:43
合計ジャッジ時間 11,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,180 KB
testcase_01 AC 106 ms
51,908 KB
testcase_02 AC 105 ms
52,124 KB
testcase_03 AC 123 ms
54,180 KB
testcase_04 AC 70 ms
50,736 KB
testcase_05 AC 101 ms
51,808 KB
testcase_06 AC 98 ms
52,212 KB
testcase_07 AC 95 ms
52,180 KB
testcase_08 AC 110 ms
51,868 KB
testcase_09 AC 116 ms
52,016 KB
testcase_10 AC 97 ms
51,824 KB
testcase_11 AC 117 ms
51,872 KB
testcase_12 AC 113 ms
51,932 KB
testcase_13 AC 101 ms
51,988 KB
testcase_14 AC 116 ms
51,916 KB
testcase_15 AC 112 ms
51,820 KB
testcase_16 AC 101 ms
52,064 KB
testcase_17 AC 96 ms
52,184 KB
testcase_18 AC 105 ms
51,808 KB
testcase_19 AC 100 ms
51,872 KB
testcase_20 AC 105 ms
51,704 KB
testcase_21 AC 120 ms
51,968 KB
testcase_22 AC 98 ms
52,080 KB
testcase_23 AC 115 ms
53,836 KB
testcase_24 AC 113 ms
51,948 KB
testcase_25 AC 113 ms
52,048 KB
testcase_26 AC 107 ms
51,780 KB
testcase_27 AC 108 ms
51,988 KB
testcase_28 AC 116 ms
52,196 KB
testcase_29 AC 95 ms
52,108 KB
testcase_30 AC 90 ms
51,752 KB
testcase_31 AC 107 ms
51,904 KB
testcase_32 AC 109 ms
51,968 KB
testcase_33 AC 120 ms
54,060 KB
testcase_34 AC 96 ms
51,688 KB
testcase_35 AC 105 ms
51,800 KB
testcase_36 AC 116 ms
52,148 KB
testcase_37 AC 115 ms
52,072 KB
testcase_38 AC 113 ms
51,984 KB
testcase_39 AC 107 ms
51,760 KB
testcase_40 AC 113 ms
52,088 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 108 ms
51,744 KB
testcase_52 AC 111 ms
51,816 KB
testcase_53 AC 96 ms
51,880 KB
testcase_54 AC 100 ms
52,092 KB
testcase_55 AC 90 ms
52,076 KB
testcase_56 AC 92 ms
51,536 KB
testcase_57 AC 111 ms
51,872 KB
testcase_58 AC 92 ms
51,932 KB
testcase_59 AC 117 ms
52,052 KB
testcase_60 AC 106 ms
51,900 KB
testcase_61 AC 54 ms
50,320 KB
testcase_62 AC 55 ms
50,200 KB
testcase_63 AC 53 ms
50,368 KB
testcase_64 AC 54 ms
50,184 KB
testcase_65 AC 53 ms
50,372 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) ? "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