結果

問題 No.2716 Falcon Method
ユーザー flygonflygon
提出日時 2024-04-05 22:19:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 85,420 KB
最終ジャッジ日時 2024-10-01 02:34:14
合計ジャッジ時間 6,613 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,120 KB
testcase_01 AC 43 ms
55,368 KB
testcase_02 AC 43 ms
56,608 KB
testcase_03 AC 41 ms
55,448 KB
testcase_04 AC 40 ms
55,476 KB
testcase_05 AC 43 ms
54,920 KB
testcase_06 AC 61 ms
68,384 KB
testcase_07 AC 66 ms
70,016 KB
testcase_08 AC 67 ms
71,804 KB
testcase_09 AC 65 ms
69,692 KB
testcase_10 AC 63 ms
68,860 KB
testcase_11 AC 172 ms
83,880 KB
testcase_12 AC 230 ms
84,872 KB
testcase_13 AC 207 ms
85,084 KB
testcase_14 AC 247 ms
84,264 KB
testcase_15 AC 222 ms
84,828 KB
testcase_16 AC 234 ms
84,128 KB
testcase_17 AC 241 ms
84,848 KB
testcase_18 AC 282 ms
84,544 KB
testcase_19 AC 227 ms
84,148 KB
testcase_20 AC 211 ms
85,420 KB
testcase_21 AC 157 ms
82,856 KB
testcase_22 AC 185 ms
83,964 KB
testcase_23 AC 249 ms
85,008 KB
testcase_24 AC 178 ms
83,980 KB
testcase_25 AC 44 ms
54,580 KB
testcase_26 AC 43 ms
55,676 KB
testcase_27 AC 214 ms
84,588 KB
testcase_28 AC 211 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,q = map(int,input().split())
s = input().rstrip()
s = s+s
d = [0]*(2*n+1)
r = [0]*(2*n+1)
for i in range(2*n):
    if s[i] == "D":
        d[i+1] = 1
    else:
        r[i+1] = 1
    d[i+1] += d[i]
    r[i+1] += r[i]

dnum = d[-1]//2
rnum = r[-1]//2

for i in range(q):
    h,w,p = map(int,input().split())
    p += 1
    dloop = 10**15
    rloop = 10**15
    dt = n
    rt = n
    if dnum != 0:
        dloop = h//dnum
        dleft = d[p-1] + (h%dnum)
        dt = bisect_left(d, dleft)
    if rnum != 0:
        rloop = w//rnum
        rleft = r[p-1] + (w%rnum)
        rt = bisect_left(r, rleft)
    if dt >= n:
        dloop += dt//n
        dt %= n
    if rt >= n:
        rloop += rt//n
        rt %= n
    if [dloop, dt] <= [rloop, rt]:
        print(dt)
    else:
        print(rt)
0