結果

問題 No.1439 Let's Compare!!!!
ユーザー ks2mks2m
提出日時 2021-03-26 21:41:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,226 ms / 2,000 ms
コード長 1,315 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 78,360 KB
実行使用メモリ 73,360 KB
最終ジャッジ日時 2024-05-06 22:17:17
合計ジャッジ時間 13,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,980 KB
testcase_01 AC 52 ms
36,844 KB
testcase_02 AC 52 ms
37,232 KB
testcase_03 AC 52 ms
36,848 KB
testcase_04 AC 54 ms
37,192 KB
testcase_05 AC 52 ms
36,848 KB
testcase_06 AC 51 ms
36,736 KB
testcase_07 AC 167 ms
42,424 KB
testcase_08 AC 183 ms
43,744 KB
testcase_09 AC 139 ms
40,492 KB
testcase_10 AC 1,086 ms
69,244 KB
testcase_11 AC 1,006 ms
68,088 KB
testcase_12 AC 1,226 ms
65,636 KB
testcase_13 AC 1,108 ms
69,376 KB
testcase_14 AC 1,124 ms
73,360 KB
testcase_15 AC 1,016 ms
53,328 KB
testcase_16 AC 852 ms
60,156 KB
testcase_17 AC 742 ms
48,936 KB
testcase_18 AC 665 ms
48,944 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