結果
問題 | No.2787 グッドスタイン数列? |
ユーザー | GOTKAKO |
提出日時 | 2024-06-14 23:20:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,114 bytes |
コンパイル時間 | 2,440 ms |
コンパイル使用メモリ | 203,844 KB |
実行使用メモリ | 10,144 KB |
最終ジャッジ日時 | 2024-06-14 23:20:09 |
合計ジャッジ時間 | 6,970 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,140 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); auto solve = [&](__int128_t N,__int128_t B,__int128_t C) -> long long { if(N < B){ long long ret = 1+(N*2)+1; if(ret > C) return -1; else return ret; } auto Gb = [&](auto Gb,long long N,long long B) -> __int128_t { if(N < B) return N; __int128_t ret = Gb(Gb,N/B,B); if(ret == -1) return -1; ret *= B+1; ret += N%B; if(ret > C) return -1; return ret; }; long long turn = 1; while(N > 0){ __int128_t next = Gb(Gb,N,B); turn += 2; if(next == -1) return -1; B++; next--; if(next == N) break; N = next; } turn += 2*N+1; if(turn > C) return -1; else return turn; }; cout << "Yes\n"; long long N,B,C; cin >> N >> B >> C; long long ans = solve(N,B,C); if(ans != -1) cout << "Yes\n" << ans << endl; else cout << "No\n"; }