結果

問題 No.1439 Let's Compare!!!!
ユーザー uwiuwi
提出日時 2020-11-23 20:54:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,930 ms / 2,000 ms
コード長 1,141 bytes
コンパイル時間 3,850 ms
コンパイル使用メモリ 79,196 KB
実行使用メモリ 85,060 KB
最終ジャッジ日時 2024-11-27 10:22:41
合計ジャッジ時間 21,114 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,896 KB
testcase_01 AC 119 ms
41,072 KB
testcase_02 AC 114 ms
41,072 KB
testcase_03 AC 117 ms
41,172 KB
testcase_04 AC 125 ms
41,452 KB
testcase_05 AC 112 ms
40,344 KB
testcase_06 AC 103 ms
39,920 KB
testcase_07 AC 239 ms
46,428 KB
testcase_08 AC 257 ms
47,032 KB
testcase_09 AC 207 ms
44,784 KB
testcase_10 AC 1,922 ms
85,060 KB
testcase_11 AC 1,821 ms
76,364 KB
testcase_12 AC 1,920 ms
76,392 KB
testcase_13 AC 1,718 ms
75,192 KB
testcase_14 AC 1,930 ms
80,732 KB
testcase_15 AC 1,737 ms
64,468 KB
testcase_16 AC 1,316 ms
63,924 KB
testcase_17 AC 1,274 ms
62,548 KB
testcase_18 AC 1,292 ms
63,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;
import java.util.TreeSet;

public class P5533 {
	static Scanner in = new Scanner(System.in);
	static PrintWriter out = new PrintWriter(System.out);

	public static void main(String[] args) {
		int n = ni();
		char[] s = in.next().toCharArray();
		char[] t = in.next().toCharArray();

		TreeSet<Integer> sg = new TreeSet<>();
		TreeSet<Integer> tg = new TreeSet<>();
		for(int i = 0;i < n;i++){
			if(s[i] > t[i]){
				sg.add(i);
			}else if(s[i] < t[i]){
				tg.add(i);
			}
		}
		for(int Q = ni();Q > 0;Q--){
			char c = in.next().charAt(0);
			int k = ni()-1;
			int v = ni();
			if(c == 'S'){
				s[k] = (char)('0'+v);
			}else{
				t[k] = (char)('0'+v);
			}
			sg.remove(k);
			tg.remove(k);
			if(s[k] > t[k]){
				sg.add(k);
			}else if(s[k] < t[k]){
				tg.add(k);
			}

			int mins = sg.isEmpty() ? n + 1 : sg.first();
			int mint = tg.isEmpty() ? n + 1 : tg.first();
			if(mins == mint){
				out.println("=");
			}else if(mins < mint) {
				out.println(">");
			}else{
				out.println("<");
			}
		}
		out.flush();
	}

	static int ni(){ return Integer.parseInt(in.next()); }
}
0