結果

問題 No.1439 Let's Compare!!!!
ユーザー first_vilfirst_vil
提出日時 2020-11-23 23:06:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 943 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 114,196 KB
最終ジャッジ日時 2024-05-06 22:09:55
合計ジャッジ時間 9,667 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 35 ms
52,864 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 38 ms
53,120 KB
testcase_05 AC 38 ms
53,248 KB
testcase_06 AC 37 ms
52,608 KB
testcase_07 AC 153 ms
77,968 KB
testcase_08 AC 181 ms
78,156 KB
testcase_09 AC 133 ms
78,080 KB
testcase_10 AC 919 ms
107,280 KB
testcase_11 AC 943 ms
113,712 KB
testcase_12 AC 865 ms
113,012 KB
testcase_13 AC 870 ms
107,024 KB
testcase_14 AC 906 ms
107,664 KB
testcase_15 AC 922 ms
114,196 KB
testcase_16 AC 871 ms
109,172 KB
testcase_17 AC 822 ms
97,644 KB
testcase_18 AC 494 ms
94,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush,heapify

n=int(input())
s=list(input())
t=list(input())

diff=[]
heapify(diff)
for i in range(n):
    if s[i]!=t[i]:
        heappush(diff,i)
  
q=int(input())
for _ in range(q):
    c,x,y=input().split()
    x=int(x)-1
    
    if c=='S':
        s[x]=y
    else:
        t[x]=y
    if s[x]!=t[x]:
        heappush(diff,x)
      
    k=-1
    while diff:
        j=heappop(diff)
        if s[j]!=t[j]:
            k=j
            break
    if k==-1:
        print('=')
    else:
        print('>' if s[k]>t[k] else '<')
        heappush(diff,k)
0