結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,708 KB
testcase_02 AC 63 ms
73,672 KB
testcase_03 WA -
testcase_04 AC 38 ms
53,092 KB
testcase_05 AC 38 ms
53,352 KB
testcase_06 AC 37 ms
52,432 KB
testcase_07 AC 38 ms
52,892 KB
testcase_08 AC 38 ms
53,744 KB
testcase_09 AC 40 ms
53,284 KB
testcase_10 AC 39 ms
52,196 KB
testcase_11 AC 38 ms
52,620 KB
testcase_12 AC 37 ms
52,276 KB
testcase_13 AC 36 ms
52,332 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 41 ms
52,652 KB
testcase_20 AC 38 ms
53,616 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 47 ms
63,136 KB
testcase_24 AC 63 ms
74,780 KB
testcase_25 AC 64 ms
73,500 KB
testcase_26 AC 44 ms
59,512 KB
testcase_27 AC 44 ms
60,356 KB
testcase_28 AC 52 ms
66,928 KB
testcase_29 AC 55 ms
65,576 KB
testcase_30 AC 45 ms
59,504 KB
testcase_31 AC 48 ms
63,008 KB
testcase_32 AC 47 ms
62,096 KB
testcase_33 AC 68 ms
77,552 KB
testcase_34 AC 51 ms
64,420 KB
testcase_35 AC 44 ms
61,480 KB
testcase_36 AC 64 ms
73,160 KB
testcase_37 AC 66 ms
75,624 KB
testcase_38 AC 50 ms
63,168 KB
testcase_39 AC 52 ms
62,928 KB
testcase_40 AC 51 ms
63,132 KB
testcase_41 AC 56 ms
67,228 KB
testcase_42 AC 63 ms
74,092 KB
testcase_43 AC 134 ms
138,900 KB
testcase_44 AC 140 ms
138,652 KB
testcase_45 AC 136 ms
139,792 KB
testcase_46 AC 109 ms
110,748 KB
testcase_47 AC 106 ms
110,212 KB
testcase_48 AC 111 ms
111,196 KB
testcase_49 AC 110 ms
111,928 KB
testcase_50 AC 108 ms
110,608 KB
testcase_51 AC 106 ms
111,004 KB
testcase_52 AC 108 ms
110,516 KB
testcase_53 AC 111 ms
111,012 KB
testcase_54 AC 112 ms
110,660 KB
testcase_55 AC 104 ms
105,736 KB
testcase_56 AC 101 ms
104,936 KB
testcase_57 AC 101 ms
105,376 KB
testcase_58 AC 107 ms
110,832 KB
testcase_59 AC 112 ms
110,384 KB
testcase_60 AC 108 ms
110,820 KB
testcase_61 AC 100 ms
104,416 KB
testcase_62 AC 100 ms
105,028 KB
testcase_63 AC 100 ms
104,568 KB
testcase_64 WA -
testcase_65 AC 38 ms
53,140 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 38 ms
52,648 KB
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 38 ms
52,952 KB
testcase_72 AC 38 ms
52,940 KB
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 AC 37 ms
52,336 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
権限があれば一括ダウンロードができます

ソースコード

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 + 1
    return ans
  if M == 1:
    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
  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)
  if fib[M - x * n] % N == 0:
    ans += 2
  if fib[M - 1 - x * n] % N == 0:
    ans += 1
  return ans

print(solve(N, M))
0