結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 62 ms
71,808 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 40 ms
52,096 KB
testcase_14 AC 37 ms
51,712 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 36 ms
51,840 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 46 ms
61,056 KB
testcase_24 AC 62 ms
72,960 KB
testcase_25 AC 63 ms
73,216 KB
testcase_26 AC 44 ms
59,008 KB
testcase_27 AC 43 ms
59,392 KB
testcase_28 AC 52 ms
64,640 KB
testcase_29 AC 51 ms
64,640 KB
testcase_30 AC 42 ms
58,624 KB
testcase_31 AC 47 ms
61,440 KB
testcase_32 AC 52 ms
60,672 KB
testcase_33 AC 66 ms
75,904 KB
testcase_34 AC 50 ms
62,976 KB
testcase_35 AC 42 ms
59,392 KB
testcase_36 AC 64 ms
72,320 KB
testcase_37 AC 64 ms
73,984 KB
testcase_38 AC 47 ms
62,080 KB
testcase_39 AC 50 ms
62,080 KB
testcase_40 AC 49 ms
61,824 KB
testcase_41 AC 54 ms
65,536 KB
testcase_42 AC 61 ms
72,448 KB
testcase_43 AC 134 ms
138,368 KB
testcase_44 AC 131 ms
137,856 KB
testcase_45 AC 152 ms
138,496 KB
testcase_46 AC 104 ms
110,464 KB
testcase_47 AC 102 ms
109,696 KB
testcase_48 AC 108 ms
110,464 KB
testcase_49 AC 108 ms
110,080 KB
testcase_50 AC 107 ms
110,080 KB
testcase_51 AC 105 ms
110,336 KB
testcase_52 AC 106 ms
109,824 KB
testcase_53 AC 107 ms
109,952 KB
testcase_54 AC 106 ms
110,208 KB
testcase_55 AC 129 ms
104,576 KB
testcase_56 AC 103 ms
104,192 KB
testcase_57 AC 101 ms
104,320 KB
testcase_58 AC 111 ms
109,824 KB
testcase_59 AC 106 ms
109,824 KB
testcase_60 AC 108 ms
109,824 KB
testcase_61 AC 102 ms
104,192 KB
testcase_62 AC 98 ms
104,312 KB
testcase_63 AC 103 ms
104,064 KB
testcase_64 WA -
testcase_65 AC 38 ms
52,352 KB
testcase_66 AC 38 ms
51,840 KB
testcase_67 AC 40 ms
52,192 KB
testcase_68 AC 42 ms
51,968 KB
testcase_69 AC 38 ms
52,312 KB
testcase_70 WA -
testcase_71 AC 37 ms
52,096 KB
testcase_72 AC 37 ms
52,224 KB
testcase_73 AC 37 ms
52,224 KB
testcase_74 WA -
testcase_75 WA -
testcase_76 AC 37 ms
51,968 KB
testcase_77 AC 37 ms
52,096 KB
testcase_78 WA -
testcase_79 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 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