結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 62 ms
72,192 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 37 ms
51,712 KB
testcase_14 AC 39 ms
51,968 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 37 ms
52,352 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 48 ms
61,056 KB
testcase_24 AC 64 ms
73,216 KB
testcase_25 AC 65 ms
73,472 KB
testcase_26 AC 44 ms
59,008 KB
testcase_27 AC 44 ms
59,648 KB
testcase_28 AC 52 ms
64,768 KB
testcase_29 AC 52 ms
65,152 KB
testcase_30 AC 59 ms
59,264 KB
testcase_31 AC 48 ms
61,568 KB
testcase_32 AC 48 ms
61,184 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 136 ms
139,008 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 113 ms
110,720 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 110 ms
110,208 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 108 ms
110,588 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 105 ms
104,648 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 108 ms
110,332 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 103 ms
104,680 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 39 ms
52,400 KB
testcase_66 AC 41 ms
53,220 KB
testcase_67 AC 38 ms
52,864 KB
testcase_68 AC 38 ms
53,408 KB
testcase_69 AC 38 ms
52,836 KB
testcase_70 AC 38 ms
52,652 KB
testcase_71 WA -
testcase_72 AC 39 ms
52,240 KB
testcase_73 AC 37 ms
53,028 KB
testcase_74 WA -
testcase_75 WA -
testcase_76 AC 37 ms
51,840 KB
testcase_77 AC 38 ms
52,224 KB
testcase_78 WA -
testcase_79 AC 37 ms
52,352 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.pop()
  fib.pop()
  Fib = fib[:]
  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
  for i in range(N):
    r = R[i]
    R[i] *= x
    ans += r * r * (x * (x - 1) // 2)
    ans += x * (r * (r - 1) // 2)
  for i in range(M - 1 - x * n):
    r = Fib[i]
    ans += R[r]
    R[r] += 1
  fib.append(0)
  fib.append(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