結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,612 KB
testcase_01 AC 42 ms
53,612 KB
testcase_02 AC 42 ms
53,372 KB
testcase_03 AC 41 ms
54,296 KB
testcase_04 AC 43 ms
54,156 KB
testcase_05 AC 42 ms
53,700 KB
testcase_06 AC 40 ms
52,824 KB
testcase_07 AC 129 ms
77,564 KB
testcase_08 AC 155 ms
77,800 KB
testcase_09 AC 114 ms
77,128 KB
testcase_10 AC 493 ms
114,604 KB
testcase_11 AC 589 ms
104,520 KB
testcase_12 AC 507 ms
108,704 KB
testcase_13 AC 493 ms
114,672 KB
testcase_14 AC 486 ms
114,664 KB
testcase_15 AC 544 ms
102,360 KB
testcase_16 AC 502 ms
102,384 KB
testcase_17 AC 495 ms
102,492 KB
testcase_18 AC 247 ms
102,384 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