結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,192 KB
testcase_01 AC 40 ms
53,420 KB
testcase_02 AC 64 ms
72,732 KB
testcase_03 AC 39 ms
52,888 KB
testcase_04 AC 40 ms
53,040 KB
testcase_05 AC 38 ms
53,040 KB
testcase_06 AC 39 ms
52,152 KB
testcase_07 AC 39 ms
52,464 KB
testcase_08 AC 38 ms
53,432 KB
testcase_09 AC 39 ms
53,500 KB
testcase_10 AC 38 ms
53,300 KB
testcase_11 AC 40 ms
52,748 KB
testcase_12 WA -
testcase_13 AC 39 ms
53,012 KB
testcase_14 AC 39 ms
53,080 KB
testcase_15 AC 40 ms
52,284 KB
testcase_16 AC 39 ms
52,820 KB
testcase_17 AC 39 ms
53,008 KB
testcase_18 AC 39 ms
53,484 KB
testcase_19 AC 39 ms
52,484 KB
testcase_20 AC 39 ms
52,836 KB
testcase_21 AC 39 ms
52,876 KB
testcase_22 AC 39 ms
53,204 KB
testcase_23 AC 48 ms
61,432 KB
testcase_24 AC 65 ms
73,568 KB
testcase_25 AC 66 ms
74,152 KB
testcase_26 AC 49 ms
60,412 KB
testcase_27 AC 46 ms
61,164 KB
testcase_28 AC 55 ms
64,980 KB
testcase_29 AC 53 ms
66,556 KB
testcase_30 AC 45 ms
59,744 KB
testcase_31 AC 49 ms
62,004 KB
testcase_32 AC 49 ms
60,700 KB
testcase_33 AC 70 ms
76,276 KB
testcase_34 AC 52 ms
64,956 KB
testcase_35 AC 46 ms
60,436 KB
testcase_36 AC 66 ms
74,024 KB
testcase_37 AC 67 ms
74,880 KB
testcase_38 AC 49 ms
62,396 KB
testcase_39 AC 52 ms
62,520 KB
testcase_40 AC 52 ms
62,364 KB
testcase_41 AC 57 ms
65,928 KB
testcase_42 AC 64 ms
73,764 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 111 ms
110,608 KB
testcase_47 AC 109 ms
111,408 KB
testcase_48 AC 114 ms
110,688 KB
testcase_49 AC 115 ms
111,420 KB
testcase_50 AC 112 ms
110,744 KB
testcase_51 AC 114 ms
111,300 KB
testcase_52 AC 111 ms
110,868 KB
testcase_53 AC 110 ms
110,668 KB
testcase_54 AC 111 ms
110,244 KB
testcase_55 AC 104 ms
104,508 KB
testcase_56 AC 103 ms
104,340 KB
testcase_57 AC 105 ms
105,448 KB
testcase_58 AC 109 ms
110,276 KB
testcase_59 AC 109 ms
110,292 KB
testcase_60 AC 110 ms
110,412 KB
testcase_61 AC 104 ms
104,472 KB
testcase_62 AC 107 ms
104,156 KB
testcase_63 AC 105 ms
105,348 KB
testcase_64 WA -
testcase_65 AC 38 ms
52,952 KB
testcase_66 AC 39 ms
53,164 KB
testcase_67 AC 39 ms
53,572 KB
testcase_68 AC 39 ms
52,428 KB
testcase_69 AC 40 ms
52,532 KB
testcase_70 AC 39 ms
52,064 KB
testcase_71 AC 38 ms
53,364 KB
testcase_72 AC 38 ms
52,244 KB
testcase_73 AC 40 ms
53,476 KB
testcase_74 AC 39 ms
53,628 KB
testcase_75 AC 39 ms
53,096 KB
testcase_76 AC 38 ms
52,880 KB
testcase_77 AC 40 ms
52,796 KB
testcase_78 AC 40 ms
53,068 KB
testcase_79 AC 39 ms
52,796 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, 6 * N + 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] % N == 0:
    ans += 2
  # fib_(M - 1)
  if fib[M - x * n - 1] % N == 0:
    ans += 1
  return ans

print(solve(N, M))
0