結果

問題 No.1439 Let's Compare!!!!
ユーザー FromBooskaFromBooska
提出日時 2023-03-17 19:03:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,302 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 105,728 KB
最終ジャッジ日時 2024-09-18 10:07:44
合計ジャッジ時間 6,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,472 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 33 ms
51,584 KB
testcase_07 AC 81 ms
76,484 KB
testcase_08 AC 103 ms
76,800 KB
testcase_09 AC 67 ms
72,832 KB
testcase_10 AC 267 ms
102,784 KB
testcase_11 AC 175 ms
101,888 KB
testcase_12 AC 164 ms
101,888 KB
testcase_13 AC 246 ms
100,608 KB
testcase_14 AC 254 ms
100,992 KB
testcase_15 AC 162 ms
101,228 KB
testcase_16 AC 194 ms
101,248 KB
testcase_17 AC 206 ms
100,756 KB
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# def main():にしよう
# まずNはintで受けるのか、文字列で受けるのか
# 長さ10**5はintには巨大すぎる
# 数字が大きすぎるか
# どの桁まで同じかを管理するのでどうだろう

from sys import stdin

def check(LIST1, LIST2, start, N):
    idx = start-1
    for i in range(start, N):
        if LIST1[i] == LIST2[i]:
            idx = i
        elif LIST1[i] > LIST2[i]:
            return idx, '>'
        elif LIST1[i] < LIST2[i]:
            return idx, '<'
    return N-1, '='

def main():
    N = int(input())
    S = input()
    T = input()
    S_list = list(map(int, S))
    T_list = list(map(int, T))
    same, ans = check(S_list, T_list, 0, N)
    Q = int(input())
    for i in range(Q):
        query = list(map(str, stdin.readline().split()))
        d = int(query[1])-1
        new = int(query[2])
        if d <= same+1:
            if query[0] == 'S':
                S_list[d] = new
            elif query[0] == 'T':
                T_list[d] = new
            same, ans = check(S_list, T_list, d, N)
            print(ans)
        elif d > same+1:
            if query[0] == 'S':
                S_list[d] = new
            elif query[0] == 'T':
                T_list[d] = new
            print(ans)

if __name__ == '__main__':
    main()
0