結果

問題 No.1439 Let's Compare!!!!
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-26 21:40:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 968 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-06 14:59:42
合計ジャッジ時間 2,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 34 ms
52,352 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 99 ms
76,544 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = ['0']*(n-len(S))+S
T = ['0']*(n-len(T))+T
#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 -= int(S[x])*table[n-1-x]
        #s += y*table[n-1-x]
        s -= int(S[x])*pow(10, n-1-x)
        s += y*pow(10, n-1-x)
        S[x] = str(y)
    else:
        #t -= int(T[x])*table[n-1-x]
        #t += y*table[n-1-x]
        t -= int(T[x])*pow(10, n-1-x)
        t += y*pow(10, n-1-x)
        T[x] = str(y)
    #print(s, t)
    if s > t:
        print('>')
    elif s == t:
        print('=')
    else:
        print('<')
0