結果

問題 No.1439 Let's Compare!!!!
ユーザー tentententen
提出日時 2024-02-07 13:24:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 888 ms / 2,000 ms
コード長 2,247 bytes
コンパイル時間 2,363 ms
コンパイル使用メモリ 84,364 KB
実行使用メモリ 76,200 KB
最終ジャッジ日時 2024-09-28 12:29:52
合計ジャッジ時間 11,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
51,032 KB
testcase_01 AC 72 ms
51,112 KB
testcase_02 AC 74 ms
50,984 KB
testcase_03 AC 78 ms
51,184 KB
testcase_04 AC 80 ms
51,132 KB
testcase_05 AC 76 ms
51,100 KB
testcase_06 AC 74 ms
50,804 KB
testcase_07 AC 172 ms
54,184 KB
testcase_08 AC 189 ms
56,476 KB
testcase_09 AC 152 ms
54,052 KB
testcase_10 AC 867 ms
76,200 KB
testcase_11 AC 690 ms
58,080 KB
testcase_12 AC 690 ms
57,676 KB
testcase_13 AC 829 ms
66,936 KB
testcase_14 AC 888 ms
67,076 KB
testcase_15 AC 663 ms
53,768 KB
testcase_16 AC 569 ms
52,968 KB
testcase_17 AC 632 ms
62,580 KB
testcase_18 AC 486 ms
51,184 KB
権限があれば一括ダウンロードができます

ソースコード

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);
        TreeSet<Integer> diff = IntStream.range(0, n).filter(i -> strings[0][i] != strings[1][i])
            .mapToObj(i -> Integer.valueOf(i)).collect(Collectors.toCollection(TreeSet::new));
        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 (strings[0][positon] == strings[1][positon]) {
                diff.remove(positon);
            } else {
                diff.add(positon);
            }
            if (diff.size() == 0) {
                return "=";
            } else if (strings[0][diff.first()] < strings[1][diff.first()]) {
                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