結果

問題 No.2989 Fibonacci Prize
ユーザー むつあるむつある
提出日時 2024-12-14 00:56:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 606 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 139,572 KB
最終ジャッジ日時 2024-12-14 00:56:27
合計ジャッジ時間 7,261 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,872 KB
testcase_01 AC 40 ms
52,140 KB
testcase_02 AC 59 ms
72,428 KB
testcase_03 WA -
testcase_04 AC 40 ms
52,464 KB
testcase_05 AC 39 ms
53,808 KB
testcase_06 AC 39 ms
52,068 KB
testcase_07 AC 40 ms
53,176 KB
testcase_08 AC 38 ms
52,912 KB
testcase_09 AC 38 ms
53,872 KB
testcase_10 AC 39 ms
52,760 KB
testcase_11 AC 40 ms
52,452 KB
testcase_12 AC 40 ms
53,088 KB
testcase_13 AC 39 ms
52,728 KB
testcase_14 AC 41 ms
52,812 KB
testcase_15 AC 40 ms
53,448 KB
testcase_16 AC 39 ms
53,184 KB
testcase_17 AC 40 ms
52,948 KB
testcase_18 AC 40 ms
52,704 KB
testcase_19 AC 39 ms
53,144 KB
testcase_20 AC 40 ms
52,548 KB
testcase_21 AC 40 ms
52,616 KB
testcase_22 AC 39 ms
52,532 KB
testcase_23 AC 46 ms
61,024 KB
testcase_24 AC 58 ms
72,248 KB
testcase_25 AC 62 ms
73,064 KB
testcase_26 AC 44 ms
59,740 KB
testcase_27 AC 47 ms
60,124 KB
testcase_28 AC 52 ms
65,556 KB
testcase_29 AC 51 ms
65,028 KB
testcase_30 AC 43 ms
59,784 KB
testcase_31 AC 46 ms
62,072 KB
testcase_32 AC 46 ms
61,156 KB
testcase_33 WA -
testcase_34 AC 51 ms
62,968 KB
testcase_35 WA -
testcase_36 AC 58 ms
73,080 KB
testcase_37 WA -
testcase_38 AC 50 ms
63,040 KB
testcase_39 WA -
testcase_40 AC 50 ms
63,408 KB
testcase_41 WA -
testcase_42 AC 61 ms
73,308 KB
testcase_43 AC 108 ms
138,792 KB
testcase_44 AC 111 ms
137,700 KB
testcase_45 WA -
testcase_46 AC 89 ms
109,788 KB
testcase_47 AC 91 ms
109,424 KB
testcase_48 WA -
testcase_49 AC 94 ms
109,744 KB
testcase_50 AC 91 ms
111,060 KB
testcase_51 WA -
testcase_52 AC 90 ms
110,780 KB
testcase_53 AC 89 ms
109,580 KB
testcase_54 WA -
testcase_55 AC 87 ms
105,300 KB
testcase_56 AC 84 ms
105,188 KB
testcase_57 WA -
testcase_58 AC 89 ms
109,944 KB
testcase_59 AC 91 ms
109,340 KB
testcase_60 WA -
testcase_61 AC 89 ms
104,152 KB
testcase_62 AC 85 ms
104,428 KB
testcase_63 WA -
testcase_64 AC 41 ms
52,756 KB
testcase_65 AC 40 ms
52,216 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 40 ms
52,740 KB
testcase_69 AC 40 ms
53,184 KB
testcase_70 AC 41 ms
52,152 KB
testcase_71 AC 39 ms
53,220 KB
testcase_72 AC 40 ms
53,536 KB
testcase_73 AC 40 ms
52,476 KB
testcase_74 AC 39 ms
52,636 KB
testcase_75 WA -
testcase_76 AC 39 ms
52,968 KB
testcase_77 AC 39 ms
52,544 KB
testcase_78 AC 39 ms
52,692 KB
testcase_79 AC 39 ms
52,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())

if n==1:
  print((m-2)*(m-3)//2+m)
  exit()
  
if m==1:
  print(0)
  exit()
if m==2:
  print(0)
  exit()
if m==3:
  if n==2:
    print(2)
  else:
    print(0)
  exit()
  
loop=[0,1]

while True:
  loop.append((loop[-1]+loop[-2]+1)%n)
  if loop[-1]==loop[-2]==0:
    break
  
loop=loop[1:]

cnt=[0]*n
cnt[0]=1
l=len(loop)

p=(m-2)//l
for i in loop:
  cnt[i]+=p
for i in range((m-2)%l):
  cnt[loop[i]]+=1
  
ans=0
last=(loop[(m-2)%l]-loop[(m-3)%l])%n
if last==0:
  ans+=1
last=(loop[(m-1)%l]-loop[(m-2)%l])%n
if last==0:
  ans+=1
  
for i in cnt:
  ans+=i*(i-1)//2
  
print(ans)
0