結果

問題 No.2716 Falcon Method
ユーザー ニックネームニックネーム
提出日時 2024-04-05 22:03:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 558 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,236 KB
最終ジャッジ日時 2024-10-01 02:20:09
合計ジャッジ時間 18,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 RE -
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 RE -
testcase_07 AC 41 ms
11,008 KB
testcase_08 AC 40 ms
10,880 KB
testcase_09 AC 40 ms
10,752 KB
testcase_10 AC 40 ms
11,008 KB
testcase_11 RE -
testcase_12 AC 1,036 ms
29,528 KB
testcase_13 AC 783 ms
29,472 KB
testcase_14 AC 995 ms
26,368 KB
testcase_15 AC 878 ms
28,592 KB
testcase_16 AC 1,043 ms
26,240 KB
testcase_17 AC 1,201 ms
27,264 KB
testcase_18 AC 1,416 ms
27,872 KB
testcase_19 AC 1,014 ms
26,112 KB
testcase_20 AC 852 ms
28,296 KB
testcase_21 AC 981 ms
26,880 KB
testcase_22 RE -
testcase_23 AC 1,445 ms
30,224 KB
testcase_24 AC 1,304 ms
30,104 KB
testcase_25 AC 32 ms
10,624 KB
testcase_26 RE -
testcase_27 AC 1,421 ms
30,228 KB
testcase_28 AC 1,309 ms
30,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
n,q = map(int,input().split())
s = input()*2; d = [0]; r = [0]
for v in s:
    d.append(d[-1]); r.append(r[-1])
    if v=="D": d[-1] += 1
    else: r[-1] += 1
for _ in range(q):
    h,w,p = map(int,input().split())
    if d[n]: d1,d2 = divmod(h,d[n])
    else: d1 = d2 = n
    if d1>0==d2: d1 -= 1; d2 += d[n]
    d3 = max(bisect_left(d,d[p]+d2),p)
    if r[n]: r1,r2 = divmod(w,r[n])
    else: d1 = d2 = n
    if r1>0==r2: r1 -= 1; r2 += r[n]
    r3 = max(bisect_left(r,r[p]+r2),p)
    print(d3%n if (d1,d3)<(r1,r3) else r3%n)
0