結果
問題 | No.2989 Fibonacci Prize |
ユーザー | 👑 Nachia |
提出日時 | 2024-12-14 07:58:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,392 bytes |
コンパイル時間 | 1,030 ms |
コンパイル使用メモリ | 85,204 KB |
実行使用メモリ | 814,680 KB |
最終ジャッジ日時 | 2024-12-14 07:58:30 |
合計ジャッジ時間 | 19,925 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | TLE | - |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,692 KB |
testcase_14 | AC | 2 ms
6,688 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,688 KB |
testcase_17 | AC | 2 ms
6,688 KB |
testcase_18 | AC | 2 ms
6,692 KB |
testcase_19 | AC | 2 ms
6,688 KB |
testcase_20 | AC | 2 ms
6,692 KB |
testcase_21 | AC | 2 ms
6,688 KB |
testcase_22 | AC | 2 ms
6,688 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
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 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | TLE | - |
testcase_65 | TLE | - |
testcase_66 | TLE | - |
testcase_67 | TLE | - |
testcase_68 | AC | 4 ms
6,692 KB |
testcase_69 | WA | - |
testcase_70 | WA | - |
testcase_71 | WA | - |
testcase_72 | AC | 2 ms
6,692 KB |
testcase_73 | AC | 2 ms
6,692 KB |
testcase_74 | WA | - |
testcase_75 | WA | - |
testcase_76 | AC | 2 ms
6,692 KB |
testcase_77 | AC | 2 ms
6,692 KB |
testcase_78 | AC | 2 ms
6,692 KB |
testcase_79 | AC | 2 ms
6,688 KB |
ソースコード
#ifdef NACHIA #define _GLIBCXX_DEBUG #else #define NDEBUG #endif #include <iostream> #include <string> #include <vector> #include <algorithm> using i64 = long long; using u64 = unsigned long long; #define rep(i,n) for(int i=0; i<int(n); i++) const i64 INF = 1001001001001001001; template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; } template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; } using namespace std; void testcase(){ i64 N, M; cin >> N >> M; vector<i64> F = {1,1}; for(i64 i=2; ; i++){ if(F[i-1] == 1 && F[i-2] == 0) break; F.push_back((F[i-1] + F[i-2]) % N); } i64 C = F.size(); auto fib = [&](i64 n) -> i64 { return F[n%C]; }; vector<pair<i64,i64>> A; i64 ans = 0; if(fib(M) == 0) ans += 1; if(M >= 2 && fib(M-1) == 0) ans += 1; if(M >= 3 && fib(M) == 0) ans += 1; if(M >= 3){ rep(i,C) A.push_back({ fib(i+1), ((M-1) + (C-1) - i) / C }); i64 q = 0; for(auto [x,y] : A) q += y; sort(A.begin(), A.end()); A.push_back({-2,0}); i64 a = -1, c = 0; for(auto [x,y] : A){ if(a != x){ ans += c * (c-1) / 2; a = x; c = 0; } c += y; } } cout << ans << '\n'; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); testcase(); return 0; }