結果

問題 No.1439 Let's Compare!!!!
ユーザー tentententen
提出日時 2024-02-07 13:17:46
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,225 bytes
コンパイル時間 2,428 ms
コンパイル使用メモリ 88,108 KB
実行使用メモリ 67,876 KB
最終ジャッジ日時 2024-09-28 12:29:29
合計ジャッジ時間 11,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
43,220 KB
testcase_01 AC 64 ms
37,684 KB
testcase_02 AC 64 ms
37,724 KB
testcase_03 AC 67 ms
37,808 KB
testcase_04 AC 76 ms
38,012 KB
testcase_05 AC 65 ms
38,076 KB
testcase_06 AC 63 ms
37,936 KB
testcase_07 AC 137 ms
41,564 KB
testcase_08 AC 146 ms
43,004 KB
testcase_09 AC 112 ms
40,264 KB
testcase_10 AC 468 ms
50,792 KB
testcase_11 AC 481 ms
50,096 KB
testcase_12 AC 465 ms
50,940 KB
testcase_13 AC 481 ms
50,656 KB
testcase_14 AC 476 ms
50,888 KB
testcase_15 AC 493 ms
50,364 KB
testcase_16 AC 492 ms
50,756 KB
testcase_17 AC 484 ms
50,876 KB
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
        char[][] strings = new char[2][];
        for (int i = 0; i < 2; i++) {
            strings[i] = sc.next().toCharArray();
        }
        Map<String, Integer> idxes = Map.of("S", 0, "T", 1);
        int[] diff = {0};
        while (diff[0] < n && strings[0][diff[0]] == strings[1][diff[0]]) {
            diff[0]++;
        }
        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[x][positon] = c;
            if (positon <= diff[0]) {
                diff[0] = positon;
                while (diff[0] < n && strings[0][diff[0]] == strings[1][diff[0]]) {
                    diff[0]++;
                }
            }
            if (diff[0] == n) {
                return "=";
            } else if (strings[0][diff[0]] < strings[1][diff[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();
        }
    }
    
}
0