結果
問題 | No.2363 k-bonacci |
ユーザー | t98slider |
提出日時 | 2023-07-01 08:14:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 3,529 bytes |
コンパイル時間 | 1,798 ms |
コンパイル使用メモリ | 169,624 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 19:09:39 |
合計ジャッジ時間 | 3,219 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; struct stable_int{ long long v; stable_int() : v(0) {} stable_int(long long _v) : v(_v){} stable_int& operator++() { if(__builtin_add_overflow(v, 1, &v))v = std::numeric_limits<long long>::max(); return *this; } stable_int& operator--() { if(__builtin_sub_overflow(v, 1, &v))v = std::numeric_limits<long long>::min(); return *this; } stable_int operator++(int) { stable_int result = *this; ++*this; return result; } stable_int operator--(int) { stable_int result = *this; --*this; return result; } stable_int& operator+=(const stable_int& rhs) { if(__builtin_add_overflow(v, rhs.v, &v))v = std::numeric_limits<long long>::max(); return *this; } stable_int& operator-=(const stable_int& rhs) { if(__builtin_sub_overflow(v, rhs.v, &v))v = std::numeric_limits<long long>::min(); return *this; } stable_int& operator*=(const stable_int& rhs) { long long pre = v; if(__builtin_mul_overflow(v, rhs.v, &v)){ v = (pre > 0) ^ (rhs.v > 0) ? std::numeric_limits<long long>::min() : std::numeric_limits<long long>::max(); } return *this; } stable_int& operator/=(const stable_int& rhs) { v /= rhs.v; return *this ; } stable_int operator+() const { return *this; } stable_int operator-() const { return stable_int() - *this; } friend stable_int operator+(const stable_int& lhs, const stable_int& rhs) { return stable_int(lhs) += rhs; } friend stable_int operator-(const stable_int& lhs, const stable_int& rhs) { return stable_int(lhs) -= rhs; } friend stable_int operator*(const stable_int& lhs, const stable_int& rhs) { return stable_int(lhs) *= rhs; } friend stable_int operator/(const stable_int& lhs, const stable_int& rhs) { return stable_int(lhs) /= rhs; } friend bool operator==(const stable_int& lhs, const stable_int& rhs) { return (lhs.v == rhs.v); } friend bool operator!=(const stable_int& lhs, const stable_int& rhs) { return (lhs.v != rhs.v); } friend bool operator<(const stable_int& lhs, const stable_int& rhs) { return (lhs.v < rhs.v); } friend bool operator<=(const stable_int& lhs, const stable_int& rhs) { return (lhs.v <= rhs.v); } friend bool operator>(const stable_int& lhs, const stable_int& rhs) { return (lhs.v > rhs.v); } friend bool operator>=(const stable_int& lhs, const stable_int& rhs) { return (lhs.v >= rhs.v); } friend istream& operator>>(istream& is,stable_int& rhs) noexcept { long long _v; rhs = stable_int{(is >> _v, _v)}; return is; } friend ostream& operator << (ostream &os, const stable_int& rhs) noexcept { return os << rhs.v; } }; int main(){ ios::sync_with_stdio(false); cin.tie(0); ll N; cin >> N; for(int i = 2; i <= 120; i++){ vector<stable_int> a = {1, 1}; while(a.back() < N){ int c = a.size() - i; a.push_back(0); for(int j = a.size() - 1; j >= c && j >= 0; j--){ a.back() += a[j]; } } if(a.back() == N){ cout << i << '\n'; return 0; } } cout << -1 << '\n'; }