結果

問題 No.2716 Falcon Method
ユーザー hiryuNhiryuN
提出日時 2024-04-05 21:57:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 725 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 104,404 KB
最終ジャッジ日時 2024-10-01 02:13:48
合計ジャッジ時間 10,921 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,116 KB
testcase_01 AC 39 ms
52,900 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 40 ms
54,068 KB
testcase_06 AC 67 ms
69,856 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 63 ms
69,992 KB
testcase_11 AC 651 ms
103,872 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 466 ms
98,040 KB
testcase_22 AC 607 ms
104,404 KB
testcase_23 WA -
testcase_24 AC 606 ms
103,996 KB
testcase_25 AC 38 ms
53,284 KB
testcase_26 AC 38 ms
52,612 KB
testcase_27 AC 556 ms
102,952 KB
testcase_28 AC 534 ms
103,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,Q=map(int,input().split())
s=input()
R=[0]
D=[0]
for i in s:
    if i=="R":
        R.append(R[-1]+1)
        D.append(D[-1])
    else:
        D.append(D[-1]+1)
        R.append(R[-1])
def Rco(start,dist):
    g=start+dist
    syu=g//n
    div=g%n
    return R[-1]*syu+R[div]-R[start]
def Dco(start,dist):
    g=start+dist
    syu=g//n
    div=g%n
    return D[-1]*syu+D[div]-D[start]
        
for i in range(Q):
    d,r,p=map(int,input().split())
    ans=0
    for bs in reversed(range(40)):
        ans+=2**bs
        if Dco(p,ans)>d or Rco(p,ans)>r or (Dco(p,ans)>=d and Rco(p,ans)>=r):
            ans-=2**bs
    print((p+ans)%n)
"""
for i in range(5):
    for j in range(5):
        print(Rco(i,j))
    print("#")
"""
0