結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | uwi |
提出日時 | 2020-11-23 20:51:13 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,032 bytes |
コンパイル時間 | 4,442 ms |
コンパイル使用メモリ | 79,144 KB |
実行使用メモリ | 81,176 KB |
最終ジャッジ日時 | 2024-10-11 12:04:09 |
合計ジャッジ時間 | 10,661 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
46,384 KB |
testcase_01 | AC | 142 ms
41,236 KB |
testcase_02 | AC | 129 ms
40,836 KB |
testcase_03 | AC | 147 ms
41,500 KB |
testcase_04 | AC | 159 ms
41,744 KB |
testcase_05 | AC | 153 ms
41,100 KB |
testcase_06 | AC | 137 ms
41,092 KB |
testcase_07 | AC | 404 ms
47,516 KB |
testcase_08 | AC | 431 ms
48,240 KB |
testcase_09 | AC | 309 ms
46,952 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import java.util.Scanner; import java.util.TreeSet; public class P5533 { public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); 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 = in.nextInt();Q > 0;Q--){ char c = in.next().charAt(0); int k = in.nextInt()-1; int v = in.nextInt(); 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){ System.out.println("="); }else if(mins < mint) { System.out.println(">"); }else{ System.out.println("<"); } } } }