結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | Theta |
提出日時 | 2022-10-14 17:22:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,698 bytes |
コンパイル時間 | 349 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 24,424 KB |
最終ジャッジ日時 | 2024-06-26 12:41:27 |
合計ジャッジ時間 | 4,633 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
18,080 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 32 ms
10,752 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | AC | 32 ms
10,880 KB |
testcase_05 | AC | 32 ms
10,880 KB |
testcase_06 | AC | 31 ms
10,880 KB |
testcase_07 | AC | 74 ms
11,136 KB |
testcase_08 | AC | 94 ms
11,008 KB |
testcase_09 | AC | 47 ms
10,880 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
def judge_which_larger( compare: list[str], init_digit: int = 1) -> tuple[str, int]: for digit, mark in enumerate(compare[init_digit-1:], init_digit): if mark == "=": continue return mark, digit return "=", digit def main(): _ = input() S = list(map(int, str(input()))) T = list(map(int, str(input()))) S_T_compare = [] for s_num, t_num in zip(S, T): if s_num > t_num: S_T_compare.append(">") elif s_num == t_num: S_T_compare.append("=") else: S_T_compare.append("<") current_status, diff_digit = judge_which_larger(S_T_compare) for _ in range(int(input())): which_num, digit, number = input().split() digit = int(digit) number = int(number) if which_num == "S": S[digit-1] = number elif which_num == "T": T[digit-1] = number else: raise ValueError if S[digit-1] > T[digit-1]: S_T_compare[digit-1] = ">" elif S[digit-1] == T[digit-1]: S_T_compare[digit-1] = "=" else: S_T_compare[digit-1] = "<" if diff_digit < digit: print(current_status) elif diff_digit > digit: if S_T_compare[digit-1] == "=": print(current_status) else: print(S_T_compare[digit-1]) current_status = S_T_compare[digit-1] diff_digit = digit else: current_status, diff_digit = judge_which_larger( S_T_compare, diff_digit) print(current_status) if __name__ == "__main__": main()