結果

問題 No.2716 Falcon Method
ユーザー nikoro256nikoro256
提出日時 2024-04-05 22:31:27
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 761 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 85,972 KB
最終ジャッジ日時 2024-10-01 02:42:37
合計ジャッジ時間 8,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,628 KB
testcase_01 RE -
testcase_02 AC 39 ms
53,696 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 40 ms
54,216 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 78 ms
71,848 KB
testcase_08 AC 75 ms
72,104 KB
testcase_09 AC 75 ms
70,928 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 427 ms
85,180 KB
testcase_13 AC 367 ms
85,480 KB
testcase_14 AC 487 ms
83,712 KB
testcase_15 AC 390 ms
85,140 KB
testcase_16 AC 444 ms
83,716 KB
testcase_17 AC 492 ms
84,564 KB
testcase_18 AC 546 ms
84,456 KB
testcase_19 AC 438 ms
83,660 KB
testcase_20 AC 385 ms
84,808 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 545 ms
85,972 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 529 ms
85,868 KB
testcase_28 AC 543 ms
85,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
S=input()
rs=[0 for _ in range(N)]
ls=[0 for _ in range(N)]
for i in range(N):
    if S[i]=='R':
        rs[i]+=1
    else:
        ls[i]+=1
    if i!=0:
        rs[i]+=rs[i-1]
        ls[i]+=ls[i-1]

import bisect
def solve(dat,n):
    if n%dat[-1]==0:
        return n//dat[-1]*N-N+(bisect.bisect_left(dat,dat[-1]))+1
    re=0
    re+=n//dat[-1]*N
    #print('!',dat,n,re)
    re+=bisect.bisect_left(dat,n%dat[i])+1
    return re

rss=rs+[0]
lss=ls+[0]
#print(rss,lss)
for _ in range(Q):
    H,W,P=map(int,input().split())
    #print(rss[P-1]+W,lss[P-1]+H)
    if rs[-1]!=0:
        r=solve(rs,rss[P-1]+W)
    if ls[-1]!=0:
        l=solve(ls,lss[P-1]+H)
    #print(r,l)
    if r>l:
        print(l%N)
    else:
        print(r%N)
0