結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 63 ms
72,064 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 36 ms
52,480 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 43 ms
52,352 KB
testcase_15 AC 37 ms
52,352 KB
testcase_16 AC 37 ms
52,352 KB
testcase_17 AC 38 ms
52,352 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 38 ms
51,840 KB
testcase_22 AC 37 ms
52,216 KB
testcase_23 AC 47 ms
61,056 KB
testcase_24 AC 65 ms
72,832 KB
testcase_25 AC 65 ms
73,728 KB
testcase_26 AC 44 ms
59,008 KB
testcase_27 AC 44 ms
59,776 KB
testcase_28 AC 53 ms
64,896 KB
testcase_29 AC 53 ms
64,768 KB
testcase_30 AC 44 ms
59,008 KB
testcase_31 AC 53 ms
61,824 KB
testcase_32 AC 53 ms
61,056 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 137 ms
138,496 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 109 ms
110,592 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 111 ms
110,464 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 109 ms
110,080 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 107 ms
104,704 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 109 ms
109,952 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 103 ms
104,192 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 37 ms
52,224 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 38 ms
52,480 KB
testcase_69 AC 38 ms
51,712 KB
testcase_70 AC 37 ms
52,352 KB
testcase_71 WA -
testcase_72 AC 37 ms
51,712 KB
testcase_73 AC 37 ms
51,968 KB
testcase_74 WA -
testcase_75 WA -
testcase_76 AC 37 ms
51,968 KB
testcase_77 AC 39 ms
52,096 KB
testcase_78 WA -
testcase_79 AC 38 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 - 3) // 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