結果

問題 No.2989 Fibonacci Prize
ユーザー PNJPNJ
提出日時 2024-12-14 11:36:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 902 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 139,332 KB
最終ジャッジ日時 2024-12-14 11:36:58
合計ジャッジ時間 7,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 61 ms
71,936 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 37 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 39 ms
52,440 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
53,304 KB
testcase_13 AC 38 ms
52,504 KB
testcase_14 AC 37 ms
52,376 KB
testcase_15 WA -
testcase_16 AC 37 ms
53,912 KB
testcase_17 AC 37 ms
53,492 KB
testcase_18 AC 38 ms
53,100 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 36 ms
53,416 KB
testcase_22 AC 38 ms
52,688 KB
testcase_23 AC 47 ms
60,884 KB
testcase_24 AC 62 ms
72,832 KB
testcase_25 AC 63 ms
73,216 KB
testcase_26 AC 43 ms
58,880 KB
testcase_27 AC 44 ms
59,904 KB
testcase_28 AC 51 ms
64,384 KB
testcase_29 AC 51 ms
64,384 KB
testcase_30 AC 43 ms
58,880 KB
testcase_31 AC 71 ms
61,440 KB
testcase_32 AC 47 ms
60,800 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 140 ms
138,496 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 106 ms
110,208 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 109 ms
109,952 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 111 ms
110,080 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 112 ms
104,064 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 106 ms
109,696 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 99 ms
103,936 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 37 ms
52,480 KB
testcase_66 AC 46 ms
52,096 KB
testcase_67 AC 38 ms
52,096 KB
testcase_68 AC 37 ms
51,968 KB
testcase_69 AC 37 ms
52,224 KB
testcase_70 WA -
testcase_71 WA -
testcase_72 AC 37 ms
51,712 KB
testcase_73 AC 38 ms
52,096 KB
testcase_74 AC 38 ms
51,840 KB
testcase_75 WA -
testcase_76 AC 38 ms
52,096 KB
testcase_77 AC 38 ms
52,224 KB
testcase_78 AC 37 ms
52,224 KB
testcase_79 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())

def solve(N, M):
  if N == 1:
    ans = M
    if M >= 3:
      ans = (M - 2) * (M - 1) // 2 + 3
    return ans
  if M <= 2:
    return 0
  fib = [0, 1]
  for i in range(2, M + 1):
    fib.append((fib[-1] + fib[-2]) % N)
    if fib[0] == fib[-2] and fib[1] == fib[-1]:
      break
  Fib = fib[:]
  Fib.pop()
  Fib.pop()
  n = len(Fib)
  R = [0 for i in range(N)]
  for i in range(n - 1):
    Fib[i + 1] = (Fib[i + 1] + Fib[i]) % N
  for r in Fib:
    R[r] += 1
  x = (M - 1) // n
  ans = 0
  # R <= M - 2, L <= Rのとき条件満たす.
  for i in range(N):
    R[i] *= x
    r = R[i]
    ans += r * (r - 1) // 2
  for i in range(M - 1 - x * n):
    r = Fib[i]
    ans += R[r]
    R[r] += 1
  # fib_M = fib_(M - 1) + fib_(M - 2)
  if fib[M - x * n + 1] % N == 0:
    ans += 2
  # fib_(M - 1)
  if fib[M - x * n] % N == 0:
    ans += 1
  return ans

print(solve(N, M))
0