結果

問題 No.1439 Let's Compare!!!!
ユーザー tentententen
提出日時 2021-03-30 11:46:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,652 ms / 2,000 ms
コード長 1,211 bytes
コンパイル時間 2,568 ms
コンパイル使用メモリ 79,824 KB
実行使用メモリ 71,148 KB
最終ジャッジ日時 2024-11-30 09:02:00
合計ジャッジ時間 18,058 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,216 KB
testcase_01 AC 124 ms
41,512 KB
testcase_02 AC 118 ms
41,524 KB
testcase_03 AC 126 ms
41,932 KB
testcase_04 AC 139 ms
41,604 KB
testcase_05 AC 130 ms
41,440 KB
testcase_06 AC 112 ms
40,248 KB
testcase_07 AC 235 ms
47,464 KB
testcase_08 AC 266 ms
47,912 KB
testcase_09 AC 221 ms
45,860 KB
testcase_10 AC 1,652 ms
71,148 KB
testcase_11 AC 1,561 ms
64,788 KB
testcase_12 AC 1,543 ms
63,684 KB
testcase_13 AC 1,519 ms
70,684 KB
testcase_14 AC 1,584 ms
70,672 KB
testcase_15 AC 1,342 ms
60,548 KB
testcase_16 AC 1,190 ms
58,772 KB
testcase_17 AC 1,165 ms
58,276 KB
testcase_18 AC 1,104 ms
57,572 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