結果

問題 No.2716 Falcon Method
ユーザー 👑 rin204rin204
提出日時 2024-04-07 10:56:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 117,928 KB
最終ジャッジ日時 2024-10-01 04:25:17
合計ジャッジ時間 7,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 61 ms
65,664 KB
testcase_07 AC 64 ms
66,688 KB
testcase_08 AC 62 ms
66,048 KB
testcase_09 AC 62 ms
65,920 KB
testcase_10 AC 61 ms
65,152 KB
testcase_11 AC 314 ms
117,928 KB
testcase_12 AC 261 ms
106,240 KB
testcase_13 AC 225 ms
105,856 KB
testcase_14 AC 286 ms
106,368 KB
testcase_15 AC 241 ms
105,472 KB
testcase_16 AC 264 ms
102,608 KB
testcase_17 AC 290 ms
105,592 KB
testcase_18 AC 323 ms
106,240 KB
testcase_19 AC 268 ms
106,112 KB
testcase_20 AC 235 ms
106,240 KB
testcase_21 AC 254 ms
108,928 KB
testcase_22 AC 322 ms
117,904 KB
testcase_23 AC 323 ms
102,528 KB
testcase_24 AC 321 ms
117,888 KB
testcase_25 AC 37 ms
52,224 KB
testcase_26 AC 37 ms
52,224 KB
testcase_27 AC 376 ms
105,984 KB
testcase_28 AC 328 ms
106,564 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]
    if H2[-1] == 0:
        print(w % n)
        continue
    if W2[-1] == 0:
        print(h % n)
        continue

    mi = min((h - 1) // H2[-1], (w - 1) // 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 % n)
0