結果

問題 No.1439 Let's Compare!!!!
ユーザー c-yanc-yan
提出日時 2021-03-26 22:14:59
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 647 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 109,828 KB
最終ジャッジ日時 2024-05-06 22:26:08
合計ジャッジ時間 6,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,148 KB
testcase_01 AC 35 ms
52,932 KB
testcase_02 AC 38 ms
53,240 KB
testcase_03 AC 35 ms
53,364 KB
testcase_04 AC 37 ms
52,128 KB
testcase_05 AC 36 ms
52,280 KB
testcase_06 AC 34 ms
52,532 KB
testcase_07 AC 59 ms
71,900 KB
testcase_08 AC 70 ms
76,568 KB
testcase_09 AC 54 ms
66,392 KB
testcase_10 AC 231 ms
107,764 KB
testcase_11 AC 186 ms
109,712 KB
testcase_12 AC 180 ms
109,392 KB
testcase_13 AC 224 ms
109,432 KB
testcase_14 AC 231 ms
109,828 KB
testcase_15 AC 161 ms
107,104 KB
testcase_16 AC 166 ms
105,692 KB
testcase_17 AC 181 ms
104,928 KB
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline

N = int(readline())
S = list(readline()[:-1])
T = list(readline()[:-1])
Q = int(readline())

p = 0
while p < N and S[p] == T[p]:
    p += 1

result = []
for _ in range(Q):
    c, x, y = readline().split()
    x = int(x) - 1
    if  c == 'S':
        S[x] = y
    elif c == 'T':
        T[x] = y
    if x < p and S[x] != T[x]:
        p = x
    elif x == p and S[x] == T[x]:
        while p < N and S[p] == T[p]:
            p += 1

    if p == N:
        result.append('=')
    elif S[p] > T[p]:
        result.append('>')
    elif S[p] < T[p]:
        result.append('<')
print(*result, sep='\n')
0