結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | wolgnik |
提出日時 | 2021-03-26 21:56:14 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 334 ms / 2,000 ms |
コード長 | 573 bytes |
コンパイル時間 | 226 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 112,588 KB |
最終ジャッジ日時 | 2024-11-29 08:45:06 |
合計ジャッジ時間 | 4,692 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
52,608 KB |
testcase_01 | AC | 42 ms
52,480 KB |
testcase_02 | AC | 41 ms
52,480 KB |
testcase_03 | AC | 41 ms
52,864 KB |
testcase_04 | AC | 42 ms
52,864 KB |
testcase_05 | AC | 41 ms
52,352 KB |
testcase_06 | AC | 42 ms
52,480 KB |
testcase_07 | AC | 110 ms
76,748 KB |
testcase_08 | AC | 148 ms
78,000 KB |
testcase_09 | AC | 99 ms
77,076 KB |
testcase_10 | AC | 334 ms
112,252 KB |
testcase_11 | AC | 291 ms
104,064 KB |
testcase_12 | AC | 258 ms
104,064 KB |
testcase_13 | AC | 331 ms
112,588 KB |
testcase_14 | AC | 330 ms
112,504 KB |
testcase_15 | AC | 271 ms
104,576 KB |
testcase_16 | AC | 296 ms
104,320 KB |
testcase_17 | AC | 321 ms
104,192 KB |
testcase_18 | AC | 176 ms
104,448 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("=")