結果

問題 No.2716 Falcon Method
ユーザー 👑 rin204rin204
提出日時 2024-04-07 10:54:35
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 582 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 112,512 KB
最終ジャッジ日時 2024-10-01 04:25:01
合計ジャッジ時間 6,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 RE -
testcase_02 WA -
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 WA -
testcase_08 AC 62 ms
65,664 KB
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 260 ms
106,368 KB
testcase_13 WA -
testcase_14 AC 290 ms
106,368 KB
testcase_15 AC 240 ms
105,728 KB
testcase_16 AC 278 ms
102,272 KB
testcase_17 AC 286 ms
105,728 KB
testcase_18 WA -
testcase_19 AC 263 ms
106,236 KB
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 324 ms
102,656 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 336 ms
105,984 KB
testcase_28 AC 333 ms
106,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, Q = map(int, input().split())
S = input()
H = [0]
W = [0]

H2 = [0]
W2 = [0]
for i, s in enumerate(S, 1):
    if s == "D":
        H.append(i)
        H2.append(H2[-1] + 1)
        W2.append(W2[-1])
    else:
        W.append(i)
        H2.append(H2[-1])
        W2.append(W2[-1] + 1)

for _ in range(Q):
    h, w, p = map(int, input().split())
    h += H2[p]
    w += W2[p]
    mi = min(h // H2[-1], w // W2[-1])
    h -= mi * H2[-1]
    w -= mi * W2[-1]
    ans = n
    if h < H2[-1]:
        ans = min(ans, H[h])
    if w < W2[-1]:
        ans = min(ans, W[w])
    print(ans)
0