結果

問題 No.1439 Let's Compare!!!!
ユーザー c-yanc-yan
提出日時 2021-03-26 22:15:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 647 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,196 KB
最終ジャッジ日時 2024-11-29 08:49:06
合計ジャッジ時間 8,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,572 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 34 ms
11,008 KB
testcase_08 AC 36 ms
11,008 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 358 ms
20,208 KB
testcase_11 AC 375 ms
20,136 KB
testcase_12 AC 365 ms
20,068 KB
testcase_13 AC 360 ms
20,292 KB
testcase_14 AC 358 ms
20,288 KB
testcase_15 AC 413 ms
20,416 KB
testcase_16 AC 416 ms
20,420 KB
testcase_17 AC 393 ms
20,420 KB
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline

N = int(readline())
S = list(readline()[:-1])
T = list(readline()[:-1])
Q = int(readline())

p = 0
while p < N and S[p] == T[p]:
    p += 1

result = []
for _ in range(Q):
    c, x, y = readline().split()
    x = int(x) - 1
    if  c == 'S':
        S[x] = y
    elif c == 'T':
        T[x] = y
    if x < p and S[x] != T[x]:
        p = x
    elif x == p and S[x] == T[x]:
        while p < N and S[p] == T[p]:
            p += 1

    if p == N:
        result.append('=')
    elif S[p] > T[p]:
        result.append('>')
    elif S[p] < T[p]:
        result.append('<')
print(*result, sep='\n')
0