結果

問題 No.1439 Let's Compare!!!!
ユーザー NoaSaberNoaSaber
提出日時 2021-04-01 23:27:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 659 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 123,140 KB
最終ジャッジ日時 2024-06-01 04:32:42
合計ジャッジ時間 5,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,344 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 42 ms
57,472 KB
testcase_04 AC 46 ms
58,624 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 331 ms
78,208 KB
testcase_08 AC 442 ms
78,336 KB
testcase_09 AC 139 ms
76,892 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=list(input())
T=list(input())
Q=int(input())
S_set,T_set=set([300000]),set([300000])
for i in range(N):
    if S[i]>T[i]:
        S_set.add(i)
    elif S[i]<T[i]:
        T_set.add(i)
for i in range(Q):
    c,x,y=input().split()
    x=int(x)-1
    if c=="T":
        T[x]=y
    if c=="S":
        S[x]=y
    if int(T[x])<int(S[x]):
        S_set.add(x)
        T_set.discard(x)
    elif int(T[x])>int(S[x]):
        T_set.add(x)
        S_set.discard(x)
    else:
        T_set.discard(x)
        S_set.discard(x)
    if min(S_set)<min(T_set):
        print(">")
    elif min(S_set)>min(T_set):
        print("<")
    else:
        print("=")
0