結果

問題 No.1439 Let's Compare!!!!
ユーザー marroncastlemarroncastle
提出日時 2021-03-30 11:18:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 623 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 114,736 KB
最終ジャッジ日時 2024-05-07 14:55:32
合計ジャッジ時間 7,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 46 ms
52,480 KB
testcase_02 AC 44 ms
52,480 KB
testcase_03 AC 44 ms
52,736 KB
testcase_04 AC 46 ms
53,120 KB
testcase_05 AC 47 ms
52,480 KB
testcase_06 AC 44 ms
52,480 KB
testcase_07 AC 147 ms
77,568 KB
testcase_08 AC 174 ms
77,672 KB
testcase_09 AC 130 ms
77,056 KB
testcase_10 AC 520 ms
114,596 KB
testcase_11 AC 623 ms
104,632 KB
testcase_12 AC 554 ms
108,544 KB
testcase_13 AC 530 ms
114,732 KB
testcase_14 AC 531 ms
114,736 KB
testcase_15 AC 593 ms
102,476 KB
testcase_16 AC 536 ms
102,460 KB
testcase_17 AC 530 ms
102,324 KB
testcase_18 AC 264 ms
102,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(map(int,list(input())))
T = list(map(int,list(input())))
from heapq import *
lis = []
for i in range(N):
  if S[i]!=T[i]:
    heappush(lis, i)
Q = int(input())
ans = ['=']*Q
for i in range(Q):
  c,x,y = input().split()
  x = int(x); y = int(y)
  flag = S[x-1]==T[x-1]
  if c=='S':
    S[x-1] = y
  else:
    T[x-1] = y
  if flag and S[x-1] != T[x-1]:
    heappush(lis, x-1)
  while len(lis):
    ind = heappop(lis)
    if S[ind]>T[ind]:
      ans[i] = '>'
      heappush(lis, ind)
      break
    elif S[ind]<T[ind]:
      ans[i] = '<'
      heappush(lis, ind)
      break
print(*ans, sep='\n')
0