結果

問題 No.1439 Let's Compare!!!!
ユーザー burita083burita083
提出日時 2021-03-26 23:03:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 370 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 168,192 KB
最終ジャッジ日時 2024-11-29 01:10:58
合計ジャッジ時間 22,023 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,088 KB
testcase_01 AC 41 ms
143,832 KB
testcase_02 AC 39 ms
57,344 KB
testcase_03 AC 40 ms
143,064 KB
testcase_04 AC 41 ms
57,344 KB
testcase_05 AC 40 ms
141,696 KB
testcase_06 AC 40 ms
57,344 KB
testcase_07 AC 118 ms
168,192 KB
testcase_08 AC 126 ms
82,944 KB
testcase_09 AC 105 ms
166,528 KB
testcase_10 AC 662 ms
101,132 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 648 ms
96,156 KB
testcase_14 AC 663 ms
95,588 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
T = input()
Q = int(input())
sl = len(str(S))
tl = len(str(T))
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