結果

問題 No.2989 Fibonacci Prize
ユーザー むつあるむつある
提出日時 2024-12-14 00:53:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 140,320 KB
最終ジャッジ日時 2024-12-14 00:53:15
合計ジャッジ時間 7,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,072 KB
testcase_01 AC 40 ms
52,396 KB
testcase_02 AC 58 ms
72,280 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 40 ms
52,512 KB
testcase_06 WA -
testcase_07 AC 39 ms
54,100 KB
testcase_08 AC 39 ms
52,328 KB
testcase_09 AC 39 ms
53,160 KB
testcase_10 AC 38 ms
52,324 KB
testcase_11 WA -
testcase_12 AC 40 ms
53,004 KB
testcase_13 AC 37 ms
52,832 KB
testcase_14 AC 40 ms
52,400 KB
testcase_15 AC 39 ms
53,036 KB
testcase_16 WA -
testcase_17 AC 39 ms
53,568 KB
testcase_18 AC 38 ms
52,872 KB
testcase_19 AC 39 ms
52,884 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 39 ms
53,808 KB
testcase_23 AC 47 ms
60,500 KB
testcase_24 AC 58 ms
73,960 KB
testcase_25 AC 59 ms
72,640 KB
testcase_26 AC 44 ms
58,564 KB
testcase_27 WA -
testcase_28 AC 50 ms
65,356 KB
testcase_29 AC 50 ms
65,468 KB
testcase_30 AC 43 ms
58,348 KB
testcase_31 AC 47 ms
61,756 KB
testcase_32 AC 47 ms
60,892 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 100 ms
138,636 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 87 ms
111,076 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 92 ms
109,980 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 88 ms
110,432 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 86 ms
104,524 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 90 ms
109,564 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 83 ms
103,992 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 39 ms
52,960 KB
testcase_65 AC 41 ms
52,628 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 37 ms
53,168 KB
testcase_69 AC 38 ms
52,520 KB
testcase_70 AC 38 ms
53,336 KB
testcase_71 AC 40 ms
52,616 KB
testcase_72 AC 39 ms
52,220 KB
testcase_73 AC 38 ms
52,668 KB
testcase_74 AC 38 ms
52,900 KB
testcase_75 WA -
testcase_76 AC 39 ms
52,472 KB
testcase_77 AC 39 ms
52,584 KB
testcase_78 AC 38 ms
52,744 KB
testcase_79 WA -
権限があれば一括ダウンロードができます

ソースコード

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-1)%l]
if last==0:
  ans+=1
last=loop[m%l]
if last==0:
  ans+=1
  
for i in cnt:
  ans+=i*(i-1)//2
  
print(ans)
0