結果

問題 No.2716 Falcon Method
ユーザー rlangevinrlangevin
提出日時 2024-04-07 01:39:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 98,152 KB
最終ジャッジ日時 2024-10-01 04:20:16
合計ジャッジ時間 5,994 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,676 KB
testcase_01 AC 41 ms
52,744 KB
testcase_02 AC 41 ms
52,416 KB
testcase_03 AC 38 ms
54,176 KB
testcase_04 AC 38 ms
53,068 KB
testcase_05 AC 38 ms
53,744 KB
testcase_06 AC 59 ms
67,080 KB
testcase_07 AC 63 ms
69,760 KB
testcase_08 AC 63 ms
68,700 KB
testcase_09 AC 62 ms
68,256 KB
testcase_10 AC 62 ms
68,372 KB
testcase_11 AC 230 ms
96,576 KB
testcase_12 AC 230 ms
96,576 KB
testcase_13 AC 199 ms
97,012 KB
testcase_14 AC 240 ms
93,584 KB
testcase_15 AC 211 ms
96,176 KB
testcase_16 AC 225 ms
93,916 KB
testcase_17 AC 239 ms
94,748 KB
testcase_18 AC 286 ms
95,836 KB
testcase_19 AC 228 ms
93,136 KB
testcase_20 AC 200 ms
95,736 KB
testcase_21 AC 201 ms
94,028 KB
testcase_22 AC 228 ms
98,152 KB
testcase_23 AC 225 ms
97,932 KB
testcase_24 AC 230 ms
97,664 KB
testcase_25 AC 37 ms
53,288 KB
testcase_26 AC 38 ms
53,124 KB
testcase_27 AC 226 ms
97,588 KB
testcase_28 AC 251 ms
97,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, Q = map(int, input().split())
S = list(input())
h = S.count("D")
w = N - h
T1 = [0] * 2 * N
T2 = [0] * 2 * N
Ac1 = [0] * (2 * N + 1)
Ac2 = [0] * (2 * N + 1)
for i in range(N):
    if S[i] == "D":
        T1[i] += 1
        T1[i + N] += 1
    else:
        T2[i] += 1
        T2[i + N] += 1
        
for i in range(2 * N):
    Ac1[i + 1] = Ac1[i] + T1[i]
    Ac2[i + 1] = Ac2[i] + T2[i]
        
def BinarySearch(check, yes = 10 ** 18, no = -1):
    while abs(yes - no) != 1:
        mid = (yes + no)//2
        if check(mid):
            yes = mid
        else:
            no = mid
    return yes

def check(r):
    x = Ac1[r] - Ac1[P]
    y = Ac2[r] - Ac2[P]
    return H - x <= 0 or W - y <= 0

def div(x, y):
    if y == 0:
        return 10 ** 18
    return x // y

for _ in range(Q):
    H, W, P = map(int, input().split())
    m = min(div(H - 1, h), div(W - 1, w))
    H -= m * h
    W -= m * w
    print(BinarySearch(check, 2 * N, P)%N)
0