結果

問題 No.2933 Range ROT Query
ユーザー loop0919loop0919
提出日時 2024-08-27 13:39:45
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 724 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 298,444 KB
最終ジャッジ日時 2024-10-02 00:23:13
合計ジャッジ時間 8,669 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 42 ms
52,864 KB
testcase_05 AC 41 ms
52,608 KB
testcase_06 AC 39 ms
52,992 KB
testcase_07 AC 43 ms
52,992 KB
testcase_08 AC 37 ms
52,548 KB
testcase_09 AC 43 ms
52,864 KB
testcase_10 AC 41 ms
53,376 KB
testcase_11 AC 43 ms
52,480 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

### 愚直解 ###

alphabets = "abcdefghijklmnopqrstuvwxyz"

S = list(input())
T = list(input())

Q = int(input())

for _ in range(Q):
    cmd, *query = list(map(int, input().split()))
    
    if cmd == 1:
        l, r, x = query
        l -= 1
        
        for i in range(l, r):
            S[i] = alphabets[(alphabets.index(S[i]) + x) % 26]
            
    elif cmd == 2:
        l, r, x = query
        l -= 1
        
        for i in range(l, r):
            T[i] = alphabets[(alphabets.index(T[i]) + x) % 26]
    
    else:
        p = query[0] - 1
        
        if S[p:] > T[p:]:
            print("Greater")
        elif S[p:] == T[p:]:
            print("Equals")
        else:
            print("Lesser")
0