結果

問題 No.2716 Falcon Method
ユーザー hato336hato336
提出日時 2024-04-05 21:59:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 205,824 KB
最終ジャッジ日時 2024-10-01 02:15:39
合計ジャッジ時間 10,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
85,632 KB
testcase_01 AC 123 ms
85,760 KB
testcase_02 AC 121 ms
85,760 KB
testcase_03 AC 120 ms
85,724 KB
testcase_04 AC 120 ms
85,572 KB
testcase_05 AC 119 ms
85,760 KB
testcase_06 AC 147 ms
89,600 KB
testcase_07 AC 144 ms
89,728 KB
testcase_08 AC 146 ms
89,600 KB
testcase_09 AC 153 ms
89,600 KB
testcase_10 AC 148 ms
89,472 KB
testcase_11 AC 403 ms
205,824 KB
testcase_12 AC 375 ms
200,920 KB
testcase_13 AC 373 ms
199,376 KB
testcase_14 AC 385 ms
186,112 KB
testcase_15 AC 371 ms
191,616 KB
testcase_16 AC 374 ms
186,368 KB
testcase_17 AC 409 ms
195,072 KB
testcase_18 AC 414 ms
195,572 KB
testcase_19 AC 367 ms
185,856 KB
testcase_20 AC 346 ms
193,552 KB
testcase_21 AC 335 ms
186,880 KB
testcase_22 AC 383 ms
204,032 KB
testcase_23 AC 387 ms
195,072 KB
testcase_24 AC 383 ms
203,776 KB
testcase_25 AC 121 ms
85,760 KB
testcase_26 AC 122 ms
85,692 KB
testcase_27 AC 430 ms
198,144 KB
testcase_28 AC 437 ms
198,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
input = sys.stdin.readline
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
n,q = map(int,input().split())
s = list(input().rstrip())
d = s.count('D')
r = s.count('R')
dd = []
rr = []
for i in range(n):
    dd.append(1 if s[i] == 'D' else 0)
    rr.append(1 if s[i] == 'R' else 0)
for i in range(n):
    dd.append(1 if s[i] == 'D' else 0)
    rr.append(1 if s[i] == 'R' else 0)
dd = list(itertools.accumulate(dd))
rr = list(itertools.accumulate(rr))



for i in range(q):
    h,w,p = map(int,input().split())
    z = min(h//d if d != 0 else 10**18,w//r if r != 0 else 10**18)
    h = h - d * z
    w = w - r * z
    if h == 0 or w == 0:
        h += d
        w += r
    #print(h,w)
    di = bisect.bisect_left(dd,(dd[p-1] if p != 0 else 0)+h)
    ri = bisect.bisect_left(rr,(rr[p-1] if p != 0 else 0)+w)
    #print(di,ri)
    j = min(di,ri)+1
    print((j)%n)
0