結果
| 問題 | No.1439 Let's Compare!!!! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-03-26 21:49:20 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 299 bytes |
| 記録 | |
| コンパイル時間 | 356 ms |
| コンパイル使用メモリ | 20,632 KB |
| 実行使用メモリ | 18,136 KB |
| 最終ジャッジ日時 | 2026-05-22 20:53:06 |
| 合計ジャッジ時間 | 6,301 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 TLE * 1 -- * 7 |
ソースコード
N = int(input())
S = list(input())
T = list(input())
Q = int(input())
for iiii in range(Q):
c, x, y = input().split()
x = int(x) - 1
if c == "S":
S[x] = y
else:
T[x] = y
if S > T:
print(">")
elif S == T:
print("=")
else:
print("<")