結果
| 問題 | No.1439 Let's Compare!!!! | 
| コンテスト | |
| ユーザー |  brthyyjp | 
| 提出日時 | 2021-03-26 22:02:04 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                RE
                                 
                            (最新) 
                                AC
                                 
                            (最初) | 
| 実行時間 | - | 
| コード長 | 1,058 bytes | 
| コンパイル時間 | 397 ms | 
| コンパイル使用メモリ | 82,232 KB | 
| 実行使用メモリ | 72,508 KB | 
| 最終ジャッジ日時 | 2024-11-29 08:46:59 | 
| 合計ジャッジ時間 | 2,468 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 6 RE * 11 | 
ソースコード
import sys
import io, os
input = sys.stdin.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
n = int(input())
s = int(input())
t = int(input())
S = list(str(s))
T = list(str(t))
S = [int(c) for c in S]
T = [int(c) for c in T]
S = [0]*(n-len(S))+S
T = [0]*(n-len(T))+T
for i in range(n):
    if S[i] != T[i]:
        p = i
        break
else:
    p = n
#print(S)
#print(T)
#N = 2*10**5+50
#table = [0]*(N+1)
#table[0] = 1
#for i in range(1, N+1):
    #table[i] = table[i-1]*10
q = int(input())
for i in range(q):
    c, x, y = map(str, input().rstrip().split())
    #print(c, x, y)
    x, y = int(x), int(y)
    x -= 1
    if c == 'S':
        S[x] = y
    else:
        T[x] = y
    if x < p:
        p = x
    if S[p] == T[p]:
        for j in range(p, n):
            if S[j] != T[j]:
                p = j
                break
        else:
            p = n
    if p != n:
        if S[p] > T[p]:
            print('>')
        else:
            print('<')
    else:
        print('=')
    #print(p)
    #print(S)
    #print(T)
            
            
            
        