結果
問題 | No.2716 Falcon Method |
ユーザー | ニックネーム |
提出日時 | 2024-04-05 21:54:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 416 bytes |
コンパイル時間 | 353 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 30,328 KB |
最終ジャッジ日時 | 2024-10-01 02:10:17 |
合計ジャッジ時間 | 13,853 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,752 KB |
testcase_01 | RE | - |
testcase_02 | AC | 28 ms
10,752 KB |
testcase_03 | AC | 28 ms
10,752 KB |
testcase_04 | AC | 26 ms
10,752 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 34 ms
10,752 KB |
testcase_08 | AC | 33 ms
10,880 KB |
testcase_09 | AC | 33 ms
10,880 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 867 ms
29,416 KB |
testcase_13 | AC | 709 ms
29,568 KB |
testcase_14 | AC | 1,004 ms
26,064 KB |
testcase_15 | AC | 747 ms
28,760 KB |
testcase_16 | WA | - |
testcase_17 | AC | 946 ms
27,132 KB |
testcase_18 | WA | - |
testcase_19 | AC | 824 ms
25,932 KB |
testcase_20 | AC | 700 ms
28,368 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 1,146 ms
30,064 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
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()) d1,d2 = divmod(h,d[n]); d3 = max(bisect_left(d,d[p]+d2),p) r1,r2 = divmod(w,r[n]); r3 = max(bisect_left(r,r[p]+r2),p) print(d3%n if (d1,d3)<(r1,r3) else r3%n)