結果
| 問題 | No.320 眠れない夜に |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-22 16:18:59 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 681 bytes |
| コンパイル時間 | 1,376 ms |
| コンパイル使用メモリ | 159,184 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-22 13:03:33 |
| 合計ジャッジ時間 | 2,483 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 31 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(i=0;i<n;++i)
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define mp make_pair
#define pb push_back
#define fi first
#define sc second
int main(int argc, char const *argv[]) {
int i;
ll a[81]={0};
a[1]=a[2]=1;
for(i=3; i<=80; ++i) a[i]=a[i-1]+a[i-2];
int n;
ll m;
cin >>n >>m;
//本来の値とどれくらい離れているか
ll d=a[n]-m;
int ans=0;
ll now=n-2;
while(now>0 || d>0){
if(d-a[now]>=0){
d-=a[now];
++ans;
}
--now;
}
if(d!=0) ans=-1;
std::cout << ans << std::endl;
return 0;
}