結果

問題 No.1439 Let's Compare!!!!
ユーザー tentententen
提出日時 2021-03-30 11:37:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,557 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 77,684 KB
実行使用メモリ 70,544 KB
最終ジャッジ日時 2024-11-30 08:50:25
合計ジャッジ時間 18,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
46,712 KB
testcase_01 AC 142 ms
41,312 KB
testcase_02 AC 130 ms
41,616 KB
testcase_03 AC 142 ms
41,624 KB
testcase_04 AC 145 ms
41,912 KB
testcase_05 AC 140 ms
41,844 KB
testcase_06 AC 135 ms
41,456 KB
testcase_07 AC 244 ms
46,260 KB
testcase_08 AC 274 ms
47,420 KB
testcase_09 AC 219 ms
46,212 KB
testcase_10 AC 1,191 ms
55,136 KB
testcase_11 AC 1,257 ms
56,660 KB
testcase_12 AC 1,317 ms
57,548 KB
testcase_13 AC 1,125 ms
55,768 KB
testcase_14 AC 1,226 ms
57,860 KB
testcase_15 AC 1,389 ms
58,160 KB
testcase_16 AC 1,356 ms
57,424 KB
testcase_17 WA -
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

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();
        int compare = 0;
        int col = 0;
        for (int i = 0; i < n; i++) {
            if (s[i] == t[i]) {
                continue;
            }
            compare = s[i] - t[i];
            col = i;
            break;
        }
        if (compare == 0) {
            col = n;
        }
        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 (col >= c) {
                for (int j = c; j < n; j++) {
                    if (s[j] == t[j]) {
                        continue;
                    }
                    compare = s[j] - t[j];
                    col = j;
                    break;
                }
            }
            if (compare == 0) {
                col = n;
            }
            if (compare == 0) {
                sb.append("=");
            } else if (compare < 0) {
                sb.append("<");
            } else {
                sb.append(">");
            }
            sb.append("\n");
        }
        System.out.print(sb);
    }
}
0