結果

問題 No.2716 Falcon Method
ユーザー titiatitia
提出日時 2024-04-06 00:15:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 945 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 104,092 KB
最終ジャッジ日時 2024-10-01 03:14:21
合計ジャッジ時間 6,625 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,496 KB
testcase_01 AC 38 ms
52,572 KB
testcase_02 AC 39 ms
52,700 KB
testcase_03 AC 38 ms
53,544 KB
testcase_04 AC 38 ms
53,576 KB
testcase_05 AC 38 ms
53,216 KB
testcase_06 AC 61 ms
66,672 KB
testcase_07 AC 62 ms
69,056 KB
testcase_08 AC 63 ms
68,680 KB
testcase_09 AC 64 ms
69,496 KB
testcase_10 AC 60 ms
67,148 KB
testcase_11 AC 256 ms
103,760 KB
testcase_12 AC 222 ms
102,792 KB
testcase_13 AC 192 ms
103,024 KB
testcase_14 AC 249 ms
97,164 KB
testcase_15 AC 204 ms
99,900 KB
testcase_16 AC 227 ms
97,592 KB
testcase_17 AC 247 ms
97,572 KB
testcase_18 AC 289 ms
99,916 KB
testcase_19 AC 234 ms
97,260 KB
testcase_20 AC 208 ms
100,008 KB
testcase_21 AC 221 ms
97,564 KB
testcase_22 AC 226 ms
104,020 KB
testcase_23 AC 247 ms
99,876 KB
testcase_24 AC 219 ms
104,092 KB
testcase_25 AC 37 ms
54,208 KB
testcase_26 AC 37 ms
53,140 KB
testcase_27 AC 228 ms
103,168 KB
testcase_28 AC 229 ms
102,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())
S=input().strip()

D=[0]
R=[0]
for s in S:
    D.append(D[-1])
    R.append(R[-1])

    if s=="D":
        D[-1]+=1
    else:
        R[-1]+=1


for queries in range(Q):
    H,W,P=map(int,input().split())

    # 何歩で下にたどりつくか?

    OK=2*10**9+10
    NG=0

    while OK>NG+1:
        mid=(OK+NG)//2

        #print(mid,P,N)

        if mid+P<=N:
            down=D[mid+P]-D[P]
            right=R[mid+P]-R[P]
            #print("!",mid,down,right)
        else:
            down=D[-1]-D[P]
            right=R[-1]-R[P]

            midx=mid-(N-P)

            kk=midx//N
            rest=midx%N

            down+=kk*D[-1]
            right+=kk*R[-1]

            down+=D[rest]
            right+=R[rest]

        #print(mid,down,right)

        if H<=down or W<=right:
            OK=mid
        else:
            NG=mid
            
    print((OK+P)%N)

0