結果

問題 No.2716 Falcon Method
ユーザー nikoro256nikoro256
提出日時 2024-04-05 22:12:56
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 718 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,808 KB
最終ジャッジ日時 2024-10-01 02:27:40
合計ジャッジ時間 7,814 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 RE -
testcase_02 WA -
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 WA -
testcase_08 AC 67 ms
70,784 KB
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 356 ms
85,248 KB
testcase_13 WA -
testcase_14 AC 408 ms
83,692 KB
testcase_15 AC 326 ms
84,992 KB
testcase_16 AC 373 ms
83,456 KB
testcase_17 AC 413 ms
84,224 KB
testcase_18 WA -
testcase_19 AC 367 ms
83,840 KB
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 448 ms
85,760 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 453 ms
85,760 KB
testcase_28 AC 454 ms
85,808 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-1-bisect.bisect_left(dat,dat[-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)
    r=solve(rs,rss[P-1]+W)
    l=solve(ls,lss[P-1]+H)
    #print(r,l)
    if r>l:
        print(l%N)
    else:
        print(r%N)
0