結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,064 KB
testcase_01 WA -
testcase_02 AC 63 ms
72,632 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
52,400 KB
testcase_06 WA -
testcase_07 AC 38 ms
53,848 KB
testcase_08 AC 38 ms
51,996 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 38 ms
52,836 KB
testcase_13 AC 38 ms
52,984 KB
testcase_14 AC 37 ms
53,540 KB
testcase_15 AC 38 ms
52,000 KB
testcase_16 AC 37 ms
52,620 KB
testcase_17 AC 38 ms
53,856 KB
testcase_18 AC 36 ms
52,992 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 37 ms
52,828 KB
testcase_22 AC 38 ms
52,284 KB
testcase_23 AC 47 ms
61,656 KB
testcase_24 AC 64 ms
73,356 KB
testcase_25 AC 67 ms
73,584 KB
testcase_26 AC 49 ms
60,352 KB
testcase_27 AC 43 ms
61,360 KB
testcase_28 AC 53 ms
65,560 KB
testcase_29 AC 52 ms
65,532 KB
testcase_30 AC 43 ms
59,796 KB
testcase_31 AC 48 ms
62,084 KB
testcase_32 AC 47 ms
61,748 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 144 ms
138,788 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 111 ms
111,664 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 110 ms
110,904 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 120 ms
110,364 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 104 ms
105,088 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 108 ms
111,032 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 101 ms
104,412 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 AC 37 ms
53,428 KB
testcase_67 WA -
testcase_68 AC 38 ms
53,692 KB
testcase_69 AC 38 ms
52,200 KB
testcase_70 AC 37 ms
52,956 KB
testcase_71 WA -
testcase_72 AC 38 ms
52,936 KB
testcase_73 AC 40 ms
53,088 KB
testcase_74 WA -
testcase_75 WA -
testcase_76 AC 37 ms
52,872 KB
testcase_77 AC 38 ms
53,868 KB
testcase_78 WA -
testcase_79 AC 37 ms
53,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(N, M):
  if N == 1:
    ans = 1
    if M >= 2:
      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