結果

問題 No.1439 Let's Compare!!!!
ユーザー ks2mks2m
提出日時 2021-03-26 21:41:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,108 ms / 2,000 ms
コード長 1,315 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 79,220 KB
実行使用メモリ 77,416 KB
最終ジャッジ日時 2024-11-29 08:39:15
合計ジャッジ時間 12,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,992 KB
testcase_01 AC 51 ms
37,228 KB
testcase_02 AC 50 ms
37,284 KB
testcase_03 AC 51 ms
36,660 KB
testcase_04 AC 52 ms
37,128 KB
testcase_05 AC 50 ms
37,244 KB
testcase_06 AC 51 ms
37,244 KB
testcase_07 AC 165 ms
41,992 KB
testcase_08 AC 177 ms
43,372 KB
testcase_09 AC 140 ms
40,756 KB
testcase_10 AC 1,052 ms
77,416 KB
testcase_11 AC 1,108 ms
66,040 KB
testcase_12 AC 1,058 ms
66,048 KB
testcase_13 AC 1,042 ms
72,228 KB
testcase_14 AC 1,062 ms
69,604 KB
testcase_15 AC 976 ms
53,292 KB
testcase_16 AC 851 ms
60,132 KB
testcase_17 AC 680 ms
47,756 KB
testcase_18 AC 586 ms
57,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.TreeSet;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		char[] s = br.readLine().toCharArray();
		char[] t = br.readLine().toCharArray();
		TreeSet<Integer> sets = new TreeSet<>();
		TreeSet<Integer> sett = new TreeSet<>();
		for (int i = 0; i < n; i++) {
			if (s[i] > t[i]) {
				sets.add(i);
			}
			if (s[i] < t[i]) {
				sett.add(i);
			}
		}
		sets.add(n);
		sett.add(n);

		int q = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			String[] sa = br.readLine().split(" ");
			int x = Integer.parseInt(sa[1]) - 1;
			if (sa[0].equals("S")) {
				s[x] = sa[2].charAt(0);
			} else {
				t[x] = sa[2].charAt(0);
			}
			if (s[x] > t[x]) {
				sets.add(x);
			} else {
				sets.remove(x);
			}
			if (s[x] < t[x]) {
				sett.add(x);
			} else {
				sett.remove(x);
			}
			int s1 = sets.first();
			int t1 = sett.first();
			if (s1 == t1) {
				pw.println("=");
			} else if (s1 < t1) {
				pw.println(">");
			} else {
				pw.println("<");
			}
		}
		pw.flush();
		br.close();
	}
}
0