結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | H20 |
提出日時 | 2021-03-26 21:48:50 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,202 bytes |
コンパイル時間 | 146 ms |
コンパイル使用メモリ | 82,496 KB |
実行使用メモリ | 113,140 KB |
最終ジャッジ日時 | 2024-11-29 08:42:31 |
合計ジャッジ時間 | 9,681 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
59,188 KB |
testcase_01 | AC | 35 ms
52,936 KB |
testcase_02 | AC | 34 ms
52,976 KB |
testcase_03 | AC | 38 ms
53,932 KB |
testcase_04 | AC | 39 ms
53,008 KB |
testcase_05 | AC | 35 ms
53,020 KB |
testcase_06 | AC | 35 ms
52,756 KB |
testcase_07 | AC | 96 ms
77,468 KB |
testcase_08 | AC | 119 ms
77,692 KB |
testcase_09 | AC | 83 ms
76,208 KB |
testcase_10 | AC | 647 ms
108,008 KB |
testcase_11 | AC | 588 ms
108,636 KB |
testcase_12 | AC | 562 ms
108,524 KB |
testcase_13 | AC | 642 ms
108,008 KB |
testcase_14 | AC | 665 ms
108,016 KB |
testcase_15 | AC | 536 ms
107,984 KB |
testcase_16 | AC | 560 ms
106,472 KB |
testcase_17 | AC | 598 ms
106,984 KB |
testcase_18 | TLE | - |
ソースコード
N = int(input()) S = list(input()) T = list(input()) Q = int(input()) for i in range(N): S[i]=int(S[i]) T[i]=int(T[i]) state = 0 # [0:=] [1:>] [2:<] for i in range(N): if S[i]<T[i]: state = 2 break if S[i]>T[i]: state = 1 break difi = i for i in range(Q): c,x,y=input().split() x=int(x) y=int(y) if c=='T': if T[x-1] == y: if state==0: print('=') elif state==1: print('>') else: print('<') continue else: T[x-1] = y else: if S[x-1] == y: if state==0: print('=') elif state==1: print('>') else: print('<') continue else: S[x-1] = y if difi>=x-1: for j in range(x-1,N): if S[j]<T[j]: state = 2 break if S[j]>T[j]: state = 1 break else: state=0 difi = j if state==0: print('=') elif state==1: print('>') else: print('<')