結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | wolgnik |
提出日時 | 2021-03-26 21:56:14 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 320 ms / 2,000 ms |
コード長 | 573 bytes |
コンパイル時間 | 1,617 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 112,596 KB |
最終ジャッジ日時 | 2024-05-06 22:23:03 |
合計ジャッジ時間 | 4,956 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,736 KB |
testcase_01 | AC | 38 ms
52,096 KB |
testcase_02 | AC | 40 ms
52,608 KB |
testcase_03 | AC | 39 ms
52,480 KB |
testcase_04 | AC | 39 ms
52,992 KB |
testcase_05 | AC | 37 ms
52,480 KB |
testcase_06 | AC | 42 ms
52,352 KB |
testcase_07 | AC | 110 ms
76,928 KB |
testcase_08 | AC | 143 ms
77,924 KB |
testcase_09 | AC | 96 ms
76,544 KB |
testcase_10 | AC | 307 ms
112,380 KB |
testcase_11 | AC | 275 ms
104,064 KB |
testcase_12 | AC | 257 ms
103,808 KB |
testcase_13 | AC | 319 ms
112,596 KB |
testcase_14 | AC | 320 ms
112,208 KB |
testcase_15 | AC | 272 ms
104,192 KB |
testcase_16 | AC | 283 ms
104,192 KB |
testcase_17 | AC | 292 ms
104,320 KB |
testcase_18 | AC | 164 ms
104,064 KB |
ソースコード
import sys import heapq hpush = heapq.heappush hpop = heapq.heappop input = sys.stdin.readline N = int(input()) S = list(map(int, list(input())[: -1])) T = list(map(int, list(input())[: -1])) h = [] for i in range(N): if S[i] != T[i]: hpush(h, i) for _ in range(int(input())): c, x, y = input().split() x = int(x) - 1 y = int(y) if c == "S": S[x] = y if c == "T": T[x] = y if S[x] != T[x]: hpush(h, x) while len(h) and S[h[0]] == T[h[0]]: hpop(h) if len(h): i = h[0] if S[i] > T[i]: print(">") if S[i] < T[i]: print("<") else: print("=")