結果

問題 No.1439 Let's Compare!!!!
ユーザー gorugo30gorugo30
提出日時 2021-03-26 21:49:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 299 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 167,924 KB
最終ジャッジ日時 2024-11-28 22:44:07
合計ジャッジ時間 21,970 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,172 KB
testcase_01 AC 37 ms
144,164 KB
testcase_02 AC 37 ms
60,188 KB
testcase_03 AC 38 ms
143,352 KB
testcase_04 AC 38 ms
59,512 KB
testcase_05 AC 38 ms
142,656 KB
testcase_06 AC 38 ms
60,048 KB
testcase_07 AC 96 ms
167,924 KB
testcase_08 AC 106 ms
83,600 KB
testcase_09 AC 87 ms
166,540 KB
testcase_10 AC 575 ms
102,064 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 594 ms
95,616 KB
testcase_14 AC 602 ms
95,128 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

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