結果

問題 No.1439 Let's Compare!!!!
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-04-03 23:49:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,045 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 116,304 KB
最終ジャッジ日時 2024-06-07 14:54:55
合計ジャッジ時間 10,836 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
63,360 KB
testcase_01 AC 56 ms
63,616 KB
testcase_02 AC 55 ms
63,360 KB
testcase_03 AC 56 ms
63,872 KB
testcase_04 AC 59 ms
64,256 KB
testcase_05 AC 60 ms
63,488 KB
testcase_06 AC 59 ms
63,488 KB
testcase_07 AC 176 ms
79,216 KB
testcase_08 AC 206 ms
79,104 KB
testcase_09 AC 158 ms
78,812 KB
testcase_10 AC 970 ms
109,520 KB
testcase_11 AC 1,045 ms
116,304 KB
testcase_12 AC 962 ms
114,820 KB
testcase_13 AC 959 ms
109,996 KB
testcase_14 AC 996 ms
109,744 KB
testcase_15 AC 1,007 ms
115,880 KB
testcase_16 AC 962 ms
111,852 KB
testcase_17 AC 876 ms
99,756 KB
testcase_18 AC 546 ms
95,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
from re import split
n = int(input())
s, t = list(input()), list(input())
l = []
heapify(l)
for i in range(n):
    if s[i] != t[i]:
        heappush(l, i)
for _ in range(int(input())):
    c, x, y = input().split()
    x = int(x)
    if c == "S":
        s[x - 1] = y
    else:
        t[x - 1] = y
    if s[x - 1] != t[x - 1]:
        heappush(l, x - 1)
    while l:
        p = heappop(l)
        if s[p] != t[p]:
            print(">" if s[p] > t[p] else "<")
            heappush(l, p)
            break
    else:
        print("=")
0