結果

問題 No.1439 Let's Compare!!!!
ユーザー burita083
提出日時 2021-03-26 23:00:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 685 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-11-29 01:03:21
合計ジャッジ時間 2,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 6 RE * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = int(input())
T = int(input())
Q = int(input())
sl = len(str(S))
tl = len(str(T))
s = ""
t = ""


ok = True
for ss in str(S):
  if ok:
    if len(str(S)) < N:
      for i in range(N-len(str(S))):
        s += "0"
        ok = False
  s += ss

ok = True
for ss in str(T):
  if ok:
    if len(str(T)) < N:
      for i in range(N-len(str(T))):
        t += "0"
        ok = False
  t += ss
s = list(s)
t = list(t)
for _ in range(Q):
  A = list(map(str, input().split()))
  if A[0] == "S":
    s[int(A[1])-1] = A[2]
  else:
    t[int(A[1])-1] = A[2]
  if s == t:
    print("=")
    continue
  if s > t:
    print(">")
    continue
  else:
    print("<")
    continue
  
0