結果

問題 No.1439 Let's Compare!!!!
ユーザー O2MTO2MT
提出日時 2021-03-27 15:29:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 373,956 KB
最終ジャッジ日時 2024-11-29 08:18:12
合計ジャッジ時間 21,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
56,960 KB
testcase_01 WA -
testcase_02 AC 34 ms
57,088 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 RE -
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(str(input()))
T = list(str(input()))
Q = int(input())
A = set()
for i in range(N):
    if S[i] != T[i]:
        A.add(i)

for _ in range(Q):
    c,x,y = map(str,input().split())
    x = int(x)-1
    if c == 'T':
        T[x] = y
    else:
        S[x] = y
    if S[x] != T[x]:
        A.add(x)
    else:
        A.discard(x)
    a = list(A)[0]

    if S[a] > T[a]:
        print('>')
    elif S[a] < T[a]:
        print('<')
    else:
        print('=')
0