結果

問題 No.2989 Fibonacci Prize
ユーザー むつあるむつある
提出日時 2024-12-14 00:58:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 662 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 138,716 KB
最終ジャッジ日時 2024-12-14 00:58:43
合計ジャッジ時間 6,993 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,608 KB
testcase_01 AC 36 ms
53,228 KB
testcase_02 AC 58 ms
71,492 KB
testcase_03 WA -
testcase_04 AC 36 ms
52,912 KB
testcase_05 AC 37 ms
53,548 KB
testcase_06 AC 37 ms
52,868 KB
testcase_07 AC 40 ms
53,068 KB
testcase_08 AC 37 ms
52,852 KB
testcase_09 AC 37 ms
52,540 KB
testcase_10 AC 38 ms
53,504 KB
testcase_11 AC 37 ms
53,084 KB
testcase_12 AC 38 ms
52,524 KB
testcase_13 AC 37 ms
52,544 KB
testcase_14 AC 38 ms
52,404 KB
testcase_15 AC 38 ms
52,400 KB
testcase_16 AC 41 ms
52,300 KB
testcase_17 AC 37 ms
52,136 KB
testcase_18 AC 37 ms
52,768 KB
testcase_19 AC 39 ms
52,440 KB
testcase_20 AC 39 ms
52,496 KB
testcase_21 AC 38 ms
52,256 KB
testcase_22 AC 37 ms
53,136 KB
testcase_23 AC 45 ms
60,640 KB
testcase_24 AC 58 ms
73,212 KB
testcase_25 AC 58 ms
73,620 KB
testcase_26 AC 43 ms
59,364 KB
testcase_27 AC 43 ms
60,004 KB
testcase_28 AC 50 ms
65,692 KB
testcase_29 AC 49 ms
64,992 KB
testcase_30 AC 42 ms
59,564 KB
testcase_31 AC 46 ms
61,800 KB
testcase_32 AC 45 ms
60,648 KB
testcase_33 AC 59 ms
76,500 KB
testcase_34 AC 48 ms
63,428 KB
testcase_35 AC 42 ms
59,120 KB
testcase_36 AC 56 ms
72,292 KB
testcase_37 AC 62 ms
73,568 KB
testcase_38 AC 46 ms
62,636 KB
testcase_39 AC 47 ms
62,244 KB
testcase_40 AC 47 ms
62,416 KB
testcase_41 AC 50 ms
65,620 KB
testcase_42 AC 59 ms
73,976 KB
testcase_43 AC 107 ms
138,140 KB
testcase_44 AC 106 ms
138,708 KB
testcase_45 AC 103 ms
138,716 KB
testcase_46 AC 86 ms
110,632 KB
testcase_47 AC 92 ms
109,968 KB
testcase_48 AC 91 ms
110,392 KB
testcase_49 AC 89 ms
109,948 KB
testcase_50 AC 88 ms
109,840 KB
testcase_51 AC 92 ms
109,712 KB
testcase_52 AC 88 ms
109,996 KB
testcase_53 AC 87 ms
110,132 KB
testcase_54 AC 87 ms
109,608 KB
testcase_55 AC 83 ms
104,516 KB
testcase_56 AC 83 ms
104,592 KB
testcase_57 AC 83 ms
104,316 KB
testcase_58 AC 87 ms
109,348 KB
testcase_59 AC 87 ms
109,672 KB
testcase_60 AC 86 ms
110,344 KB
testcase_61 AC 84 ms
104,628 KB
testcase_62 AC 82 ms
104,432 KB
testcase_63 AC 83 ms
103,676 KB
testcase_64 AC 41 ms
52,284 KB
testcase_65 AC 38 ms
54,300 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 38 ms
52,764 KB
testcase_69 AC 37 ms
52,848 KB
testcase_70 AC 41 ms
53,132 KB
testcase_71 AC 38 ms
52,124 KB
testcase_72 AC 39 ms
52,500 KB
testcase_73 AC 38 ms
53,020 KB
testcase_74 AC 38 ms
53,720 KB
testcase_75 AC 38 ms
53,084 KB
testcase_76 AC 37 ms
52,788 KB
testcase_77 AC 38 ms
52,904 KB
testcase_78 AC 37 ms
53,388 KB
testcase_79 AC 38 ms
52,952 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-2)%l]-loop[(m-4)%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