結果

問題 No.1439 Let's Compare!!!!
ユーザー 小野寺健小野寺健
提出日時 2021-05-14 22:55:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,405 bytes
コンパイル時間 3,844 ms
コンパイル使用メモリ 78,268 KB
実行使用メモリ 59,528 KB
最終ジャッジ日時 2024-10-02 03:24:39
合計ジャッジ時間 22,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,220 KB
testcase_01 AC 119 ms
41,404 KB
testcase_02 WA -
testcase_03 AC 138 ms
41,640 KB
testcase_04 AC 136 ms
41,700 KB
testcase_05 AC 130 ms
41,284 KB
testcase_06 AC 118 ms
41,108 KB
testcase_07 AC 298 ms
47,532 KB
testcase_08 AC 328 ms
48,188 KB
testcase_09 AC 244 ms
46,552 KB
testcase_10 AC 1,814 ms
58,852 KB
testcase_11 AC 1,794 ms
59,368 KB
testcase_12 AC 1,602 ms
58,708 KB
testcase_13 AC 1,801 ms
58,436 KB
testcase_14 AC 1,669 ms
59,408 KB
testcase_15 AC 1,596 ms
59,528 KB
testcase_16 AC 1,658 ms
58,448 KB
testcase_17 AC 1,569 ms
58,300 KB
testcase_18 AC 1,716 ms
58,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No1439 {
	
	private static int[] S, T;
	private static int N, D;
	private static int Diff;

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		N = scan.nextInt();
		String s = scan.next();
		String t = scan.next();
		int Q = scan.nextInt();
		S = new int[N];
		T = new int[N];
		D = 0;
		Diff = 0;
		for (int i=0; i < N; i++) {
			int cs = s.charAt(i) - '0';
			int ct = t.charAt(i) - '0';
			S[i] = cs;
			T[i] = ct;
			if (cs != ct) {
				if (D == 0) {
					D = cs > ct ? i+1 : -i-1;
				}
				Diff++;
			}
		}
		for (int i=0; i < Q; i++) {
			String c = scan.next();
			int x = scan.nextInt();
			int y = scan.nextInt();
			review(c.charAt(0), x, y);
			if (D > 0) {
				System.out.println('>');
			} else if (D < 0) {
				System.out.println('<');
			} else {
				System.out.println('=');
			}
		}
		scan.close();
	}
	private static void review(char c, int x, int y) {
		if (c == 'S') {
			if (S[x-1] == y) {
				return;
			}
			S[x-1] = y;
		} else {
			if (T[x-1] == y) {
				return;
			}
			T[x-1] = y;
		}
		if (D == 0 || x < Math.abs(D)) {
			D = S[x-1] > T[x-1] ? x : -x;
			Diff++;
		} else if (x == Math.abs(D)) {
			D = 0;
			if (Diff == 1) {
				Diff = 0;
				return;
			}
			for (int i=x-1; i < N; i++) {
				if (S[i] != T[i]) {
					D = S[i] > T[i] ? i+1 : -i-1;
					break;
				}
			}
		} else {
			Diff++;
		}
	}
}
0