結果

問題 No.2716 Falcon Method
ユーザー PNJPNJ
提出日時 2024-04-05 22:41:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 81,116 KB
最終ジャッジ日時 2024-10-01 02:48:15
合計ジャッジ時間 6,796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,880 KB
testcase_01 AC 36 ms
53,960 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
52,504 KB
testcase_06 AC 58 ms
65,996 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 58 ms
65,976 KB
testcase_11 AC 269 ms
80,408 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 230 ms
79,856 KB
testcase_22 AC 273 ms
80,696 KB
testcase_23 WA -
testcase_24 AC 279 ms
80,608 KB
testcase_25 AC 38 ms
53,128 KB
testcase_26 AC 36 ms
52,816 KB
testcase_27 AC 276 ms
80,256 KB
testcase_28 AC 283 ms
80,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
S = input()
HH = [0 for j in range(N+1)]
WW = [0 for j in range(N+1)]
h,w = 0,0
for i in range(N):
  if S[i] == 'D':
    h += 1
    HH[h] = i + 1
  else:
    w += 1
    WW[w] = i + 1
for _ in range(Q):
  H,W,P = map(int,input().split())
  if h > 0:
    hh = H % h
    if hh == 0:
      hh += h
    th = ((H - hh) // h)*N + HH[hh]
  else:
    th = 10**18
  if w > 0:
    ww = W % w
    if ww == 0:
      ww += w
    tw = ((W - ww) // w)*N + WW[ww]
  else:
    tw = 10**18
  ans = th % N
  if tw < th:
    ans = tw % N
  ans += P
  ans %= N
  print(ans)
0