結果

問題 No.1439 Let's Compare!!!!
ユーザー gorugo30gorugo30
提出日時 2021-03-26 21:49:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 299 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 102,180 KB
最終ジャッジ日時 2024-05-06 15:13:59
合計ジャッジ時間 6,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,392 KB
testcase_01 AC 40 ms
53,624 KB
testcase_02 AC 39 ms
53,444 KB
testcase_03 AC 39 ms
53,016 KB
testcase_04 AC 39 ms
53,764 KB
testcase_05 AC 39 ms
52,740 KB
testcase_06 AC 38 ms
52,484 KB
testcase_07 AC 101 ms
76,984 KB
testcase_08 AC 113 ms
76,804 KB
testcase_09 AC 95 ms
76,324 KB
testcase_10 AC 619 ms
95,236 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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("<")
0