結果

問題 No.2716 Falcon Method
ユーザー ニックネームニックネーム
提出日時 2024-04-05 22:04:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,384 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,320 KB
最終ジャッジ日時 2024-10-01 02:21:05
合計ジャッジ時間 19,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 40 ms
10,880 KB
testcase_07 AC 41 ms
10,880 KB
testcase_08 AC 39 ms
10,880 KB
testcase_09 AC 40 ms
11,008 KB
testcase_10 AC 42 ms
10,880 KB
testcase_11 AC 1,134 ms
29,440 KB
testcase_12 AC 953 ms
29,532 KB
testcase_13 AC 803 ms
29,596 KB
testcase_14 AC 1,172 ms
26,368 KB
testcase_15 AC 828 ms
28,812 KB
testcase_16 AC 959 ms
26,368 KB
testcase_17 AC 1,077 ms
27,264 KB
testcase_18 AC 1,306 ms
28,008 KB
testcase_19 AC 934 ms
26,108 KB
testcase_20 AC 830 ms
28,420 KB
testcase_21 AC 920 ms
27,008 KB
testcase_22 AC 1,212 ms
30,236 KB
testcase_23 AC 1,384 ms
30,228 KB
testcase_24 AC 1,277 ms
30,236 KB
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 1,367 ms
30,224 KB
testcase_28 AC 1,380 ms
30,320 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: r1 = r2 = 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