結果

問題 No.2716 Falcon Method
ユーザー 👑 p-adicp-adic
提出日時 2024-02-07 17:40:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-09-28 12:32:08
合計ジャッジ時間 8,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 88 ms
75,520 KB
testcase_07 AC 80 ms
73,088 KB
testcase_08 AC 85 ms
74,752 KB
testcase_09 AC 78 ms
72,448 KB
testcase_10 AC 85 ms
74,496 KB
testcase_11 AC 385 ms
82,944 KB
testcase_12 AC 352 ms
83,200 KB
testcase_13 AC 303 ms
83,072 KB
testcase_14 AC 414 ms
81,792 KB
testcase_15 AC 320 ms
82,816 KB
testcase_16 AC 363 ms
82,048 KB
testcase_17 AC 408 ms
82,304 KB
testcase_18 AC 485 ms
82,176 KB
testcase_19 AC 355 ms
81,536 KB
testcase_20 AC 334 ms
82,688 KB
testcase_21 AC 329 ms
82,048 KB
testcase_22 AC 392 ms
83,456 KB
testcase_23 AC 493 ms
83,712 KB
testcase_24 AC 405 ms
83,584 KB
testcase_25 AC 37 ms
51,584 KB
testcase_26 AC 37 ms
51,968 KB
testcase_27 AC 411 ms
83,584 KB
testcase_28 AC 423 ms
83,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
J=lambda:map(int,I().split())
N,Q=J()
S=I()
c=[0]*2
for s in S:c[s>'D']+=1
t=[[0]*(N*2+1)for b in R(2)]
for b in R(2):
	for i in R(N*2):t[b][i+1]=t[b][i]+(S[i%N]=="DR"[b])
for q in R(Q):
	H=list(J())
	P=H[2]
	d=[9**16]*2
	for b in R(2):
		if c[b]:
			q=(H[b]-1)//c[b]
			l,r=P,P+N
			while l+1<r:
				m=(l+r)//2
				if t[b][m]<H[b]+t[b][P]-q*c[b]:l=m
				else:r=m
			d[b]=q*N+r
	print(min(d)%N)
0