結果

問題 No.2716 Falcon Method
ユーザー ecotteaecottea
提出日時 2024-02-03 19:00:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-09-28 10:58:02
合計ジャッジ時間 9,439 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 66 ms
68,480 KB
testcase_07 AC 67 ms
69,376 KB
testcase_08 AC 68 ms
68,736 KB
testcase_09 AC 67 ms
69,120 KB
testcase_10 AC 65 ms
67,712 KB
testcase_11 AC 393 ms
79,488 KB
testcase_12 AC 314 ms
79,784 KB
testcase_13 AC 255 ms
79,488 KB
testcase_14 AC 377 ms
79,032 KB
testcase_15 AC 284 ms
80,080 KB
testcase_16 AC 322 ms
79,048 KB
testcase_17 AC 375 ms
79,488 KB
testcase_18 AC 434 ms
79,512 KB
testcase_19 AC 337 ms
78,592 KB
testcase_20 AC 280 ms
79,616 KB
testcase_21 AC 353 ms
79,104 KB
testcase_22 AC 408 ms
79,616 KB
testcase_23 AC 417 ms
80,000 KB
testcase_24 AC 412 ms
80,000 KB
testcase_25 AC 37 ms
52,096 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 407 ms
80,000 KB
testcase_28 AC 399 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
s = input()

d = [0] * (n + 1)
r = [0] * (n + 1)
for i in range(n):
    d[i + 1] = d[i] + (1 if s[i] == 'D' else 0)
    r[i + 1] = r[i] + (1 if s[i] == 'R' else 0)

for _ in range(q):
    h, w, p = map(int, input().split())

    ok = h + w
    ng = 0
    while ok - ng > 1:
        mid = (ok + ng) // 2

        d_cnt = 0
        d_cnt += d[n] * ((p + mid) // n) + d[(p + mid) % n]
        d_cnt -= d[n] * (p // n) + d[p % n]

        r_cnt = 0
        r_cnt += r[n] * ((p + mid) // n) + r[(p + mid) % n]
        r_cnt -= r[n] * (p // n) + r[p % n]

        if d_cnt >= h or r_cnt >= w:
            ok = mid
        else:
            ng = mid
    
    print((p + ok) % n)
0