結果
| 問題 | No.1439 Let's Compare!!!! |
| コンテスト | |
| ユーザー |
burita083
|
| 提出日時 | 2021-03-26 23:03:41 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 370 bytes |
| 記録 | |
| コンパイル時間 | 238 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 100,608 KB |
| 最終ジャッジ日時 | 2026-05-22 23:05:44 |
| 合計ジャッジ時間 | 5,347 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 TLE * 1 -- * 7 |
ソースコード
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
burita083