結果

問題 No.1439 Let's Compare!!!!
ユーザー uwiuwi
提出日時 2020-11-23 21:00:16
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,902 bytes
コンパイル時間 4,546 ms
コンパイル使用メモリ 86,572 KB
実行使用メモリ 80,372 KB
最終ジャッジ日時 2024-11-29 08:30:55
合計ジャッジ時間 22,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,204 KB
testcase_01 AC 125 ms
41,300 KB
testcase_02 AC 113 ms
41,128 KB
testcase_03 AC 123 ms
41,288 KB
testcase_04 AC 130 ms
41,448 KB
testcase_05 AC 119 ms
41,428 KB
testcase_06 AC 113 ms
41,212 KB
testcase_07 AC 254 ms
46,716 KB
testcase_08 AC 260 ms
47,856 KB
testcase_09 AC 210 ms
44,908 KB
testcase_10 AC 1,889 ms
77,288 KB
testcase_11 AC 1,759 ms
69,416 KB
testcase_12 AC 1,808 ms
73,256 KB
testcase_13 TLE -
testcase_14 AC 1,826 ms
75,604 KB
testcase_15 AC 1,560 ms
65,720 KB
testcase_16 AC 1,296 ms
63,396 KB
testcase_17 AC 1,417 ms
66,208 KB
testcase_18 AC 1,145 ms
62,460 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();
		if(!(1 <= n && n <= 200000))throw new IllegalArgumentException("n");
		char[] s = in.next().toCharArray();
		char[] t = in.next().toCharArray();
		if(s.length != n)throw new IllegalArgumentException("len of s");
		if(t.length != n)throw new IllegalArgumentException("len of t");
		for(int i = 0;i < n;i++){
			if(!('0' <= s[i] && s[i] <= '9'))throw new IllegalArgumentException("s");
			if(!('0' <= t[i] && t[i] <= '9'))throw new IllegalArgumentException("t");
		}

		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);
			}
		}
		int Q = ni();
		if(!(1 <= Q && Q <= 200000))throw new IllegalArgumentException("Q");

		for(;Q > 0;Q--){
			String cs = in.next();
			if(cs.length() != 1)throw new IllegalArgumentException("|c| != 1");
			char c = cs.charAt(0);
			if(!(c == 'S' || c == 'T'))throw new IllegalArgumentException("c");
			int k = ni()-1;
			if(!(0 <= k && k < n))throw new IllegalArgumentException("k");
			int v = ni();
			if(!(0 <= v && v <= 9))throw new IllegalArgumentException("v");
			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