結果

問題 No.1439 Let's Compare!!!!
ユーザー NoaSaberNoaSaber
提出日時 2021-04-02 00:07:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,079 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 131,628 KB
最終ジャッジ日時 2024-06-01 04:44:53
合計ジャッジ時間 11,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,620 KB
testcase_01 AC 42 ms
53,476 KB
testcase_02 AC 44 ms
54,176 KB
testcase_03 AC 42 ms
53,464 KB
testcase_04 AC 43 ms
53,944 KB
testcase_05 AC 43 ms
53,348 KB
testcase_06 AC 41 ms
54,244 KB
testcase_07 AC 175 ms
79,368 KB
testcase_08 AC 248 ms
78,816 KB
testcase_09 AC 147 ms
77,536 KB
testcase_10 AC 1,018 ms
131,392 KB
testcase_11 AC 1,069 ms
114,048 KB
testcase_12 AC 985 ms
112,220 KB
testcase_13 AC 1,076 ms
131,628 KB
testcase_14 AC 1,079 ms
131,304 KB
testcase_15 AC 1,058 ms
113,936 KB
testcase_16 AC 975 ms
109,216 KB
testcase_17 AC 957 ms
97,320 KB
testcase_18 AC 530 ms
94,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N=int(input())
S=list(input())
T=list(input())
Q=int(input())
s,q=set(),[]
for i in range(N):
    if S[i]!=T[i]:
        q.append(i)
        s.add(i)
heapq.heapify(q)
for i in range(Q):
    c,x,y=input().split()
    x=int(x)-1
    if c=="T":
        T[x]=y
    else:
        S[x]=y
    if S[x]!=T[x]:
        heapq.heappush(q,x)
    while len(q)!=0:
        num=heapq.heappop(q)
        if int(S[num])>int(T[num]):
            print(">")
            heapq.heappush(q,num)
            break
        elif int(S[num])<int(T[num]):
            print("<")
            heapq.heappush(q,num)
            break
    if len(q)==0:
        print("=")
            
0