結果

問題 No.1439 Let's Compare!!!!
ユーザー gorugo30gorugo30
提出日時 2021-03-26 22:01:22
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,231 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 101,892 KB
最終ジャッジ日時 2024-05-06 22:23:50
合計ジャッジ時間 6,440 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,216 KB
testcase_01 AC 35 ms
53,172 KB
testcase_02 AC 35 ms
52,536 KB
testcase_03 AC 37 ms
53,356 KB
testcase_04 AC 33 ms
52,544 KB
testcase_05 AC 36 ms
53,480 KB
testcase_06 AC 36 ms
52,064 KB
testcase_07 AC 70 ms
74,516 KB
testcase_08 AC 84 ms
76,920 KB
testcase_09 AC 59 ms
69,196 KB
testcase_10 AC 211 ms
95,888 KB
testcase_11 AC 185 ms
97,576 KB
testcase_12 AC 181 ms
97,196 KB
testcase_13 AC 216 ms
96,112 KB
testcase_14 AC 208 ms
95,872 KB
testcase_15 AC 164 ms
95,324 KB
testcase_16 AC 168 ms
95,008 KB
testcase_17 AC 192 ms
94,672 KB
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
S = list(input().rstrip("\n"))
T = list(input().rstrip("\n"))
Q = int(input())

tigauketa = N
for i in range(N):
    if S[i] != T[i]:
        tigauketa = i
        break
if S > T:
    prevans = ">"
elif S == T:
    prevans = "="
else:
    prevans = "<"
for iii in range(Q):
    c, x, y = input().split()
    x = int(x) - 1
    if c == "S":
        S[x] = y
    else:
        T[x] = y
    if x <= tigauketa:
        if S[x] == T[x]:
            tigauketa = N
            for i in range(x + 1, N):
                if S[i] != T[i]:
                    tigauketa = i
                    break
            if tigauketa == N:
                prevans = "="
                print("=")
            elif S[tigauketa] > T[tigauketa]:
                prevans = ">"
                print(">")
            else:
                prevans = "<"
                print("<")
        else:
            tigauketa = x
            if S[x] > T[x]:
                prevans = ">"
                print(">")
            elif S[x] == T[x]:
                prevans = "="
                print("=")
            else:
                prevans = "<"
                print("<")
    else:
        print(prevans)
0