結果

問題 No.1439 Let's Compare!!!!
ユーザー O2MTO2MT
提出日時 2021-03-27 16:07:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 200,684 KB
最終ジャッジ日時 2024-11-29 08:18:55
合計ジャッジ時間 21,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,368 KB
testcase_01 AC 41 ms
157,500 KB
testcase_02 AC 37 ms
57,984 KB
testcase_03 WA -
testcase_04 AC 40 ms
59,812 KB
testcase_05 AC 39 ms
154,584 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 482 ms
200,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
N = int(input())
S = list(str(input()))
T = list(str(input()))
Q = int(input())
A = []
for i in range(N):
    if S[i] != T[i]:
        heappush(A,i)

for _ in range(Q):
    c,x,y = map(str,input().split())
    x = int(x)-1
    if c == 'T':
        T[x] = y
    else:
        S[x] = y
    if S[x] != T[x]:
        if x not in A:
            heappush(A,x)
    else:
        if x in A:
            A.remove(x)
    if A == []:
        print('=')
        continue
    
    a = heappop(A)
    heappush(A,a)

    if S[a] > T[a]:
        print('>')
    elif S[a] < T[a]:
        print('<')
    else:
        print('=')
0