結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | tenten |
提出日時 | 2024-02-07 12:58:22 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,693 ms / 2,000 ms |
コード長 | 1,886 bytes |
コンパイル時間 | 2,587 ms |
コンパイル使用メモリ | 81,944 KB |
実行使用メモリ | 60,908 KB |
最終ジャッジ日時 | 2024-09-28 12:29:14 |
合計ジャッジ時間 | 14,978 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
51,088 KB |
testcase_01 | AC | 70 ms
50,840 KB |
testcase_02 | AC | 65 ms
50,700 KB |
testcase_03 | AC | 71 ms
51,148 KB |
testcase_04 | AC | 84 ms
51,260 KB |
testcase_05 | AC | 75 ms
51,160 KB |
testcase_06 | AC | 71 ms
50,928 KB |
testcase_07 | AC | 150 ms
53,392 KB |
testcase_08 | AC | 164 ms
54,464 KB |
testcase_09 | AC | 138 ms
52,728 KB |
testcase_10 | AC | 481 ms
60,908 KB |
testcase_11 | AC | 1,389 ms
60,260 KB |
testcase_12 | AC | 1,339 ms
60,804 KB |
testcase_13 | AC | 474 ms
50,612 KB |
testcase_14 | AC | 477 ms
50,456 KB |
testcase_15 | AC | 1,607 ms
51,212 KB |
testcase_16 | AC | 1,693 ms
51,096 KB |
testcase_17 | AC | 1,675 ms
60,756 KB |
testcase_18 | AC | 1,025 ms
50,456 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); List<StringBuilder> strings = IntStream.range(0, 2).mapToObj(i -> new StringBuilder(sc.next())).toList(); Map<String, Integer> idxes = Map.of("S", 0, "T", 1); int q = sc.nextInt(); String result = IntStream.range(0, q).mapToObj(i -> { int x = idxes.get(sc.next()); int positon = sc.nextInt() - 1; char c = (char)(sc.nextInt() + '0'); strings.get(x).setCharAt(positon, c); int comp = strings.get(0).compareTo(strings.get(1)); if (comp == 0) { return "="; } else if (comp < 0) { return "<"; } else { return ">"; } }).collect(Collectors.joining("\n")); System.out.println(result); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }