結果

問題 No.1439 Let's Compare!!!!
ユーザー tentententen
提出日時 2021-03-30 11:46:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,756 ms / 2,000 ms
コード長 1,211 bytes
コンパイル時間 2,730 ms
コンパイル使用メモリ 79,784 KB
実行使用メモリ 73,240 KB
最終ジャッジ日時 2024-05-07 15:19:14
合計ジャッジ時間 18,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,092 KB
testcase_01 AC 122 ms
41,124 KB
testcase_02 AC 117 ms
41,180 KB
testcase_03 AC 127 ms
41,232 KB
testcase_04 AC 129 ms
41,724 KB
testcase_05 AC 149 ms
41,720 KB
testcase_06 AC 141 ms
40,968 KB
testcase_07 AC 249 ms
47,116 KB
testcase_08 AC 270 ms
47,064 KB
testcase_09 AC 230 ms
45,972 KB
testcase_10 AC 1,756 ms
71,444 KB
testcase_11 AC 1,440 ms
63,684 KB
testcase_12 AC 1,523 ms
64,308 KB
testcase_13 AC 1,598 ms
73,240 KB
testcase_14 AC 1,547 ms
72,484 KB
testcase_15 AC 1,339 ms
60,396 KB
testcase_16 AC 1,333 ms
58,832 KB
testcase_17 AC 1,177 ms
58,048 KB
testcase_18 AC 1,127 ms
57,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        char[] s = sc.next().toCharArray();
        char[] t = sc.next().toCharArray();
        TreeSet<Integer> diff = new TreeSet<>();
        for (int i = 0; i < n; i++) {
            if (s[i] != t[i]) {
                diff.add(i);
            }
        }
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            char type = sc.next().charAt(0);
            int c = sc.nextInt() - 1;
            char x = sc.next().charAt(0);
            if (type == 'T') {
                t[c] = x;
            } else {
                s[c] = x;
            }
            if (t[c] == s[c]) {
                diff.remove(c);
            } else {
                diff.add(c);
            }
            if (diff.size() == 0) {
                sb.append("=");
            } else if (s[diff.first()] < t[diff.first()]) {
                sb.append("<");
            } else {
                sb.append(">");
            }
            sb.append("\n");
        }
        System.out.print(sb);
    }
}
0