結果
問題 | No.1243 約数加算 |
ユーザー | takayg |
提出日時 | 2020-10-02 23:16:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,025 bytes |
コンパイル時間 | 2,274 ms |
コンパイル使用メモリ | 208,756 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-07-17 23:40:08 |
合計ジャッジ時間 | 5,781 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 17 ms
6,944 KB |
testcase_04 | AC | 284 ms
6,940 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define ld long double #define rep(i, n) for(int i = 0; i < (int)(n); i ++) #define rrep(i, n) for(int i = (int)(n) - 1; i >= 0; i --) #define pii pair<int, int> #define pll pair<ll, ll> #define vi vector<int> #define vll vector<ll> #define vpi vector<pii> #define vpll vector<pll> #define sll set<ll> #define spll set<pll> #define pb push_back #define eb emplace_back #define mp make_pair #define fi first #define se second #define mod 1000000007 #define mod2 998244353 #define inf 1000000000000000000 #define pi acos(-1) #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() #define Sort(a) sort(a.begin(), a.end()) #define Rsort(a) sort(a.rbegin(), a.rend()) #define print(x) for(auto i : (x)) cout << i << " "; cout << endl template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } // const ll dx[] = {-1,0,1,0,-1,-1,1,1}; // const ll dy[] = {0,-1,0,1,-1,1,-1,1}; vector<long long> enum_divisors(long long N) { vector<long long> res; for (long long i = 1; i * i <= N; ++i) { if (N % i == 0) { res.push_back(i); // 重複しないならば i の相方である N/i も push if (N/i != i) res.push_back(N/i); } } // 小さい順に並び替える sort(res.begin(), res.end()); return res; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << setprecision(15) << fixed; ll t; cin >> t; rep(i, t) { ll a, b; cin >> a >> b; vll ans; while (1) { auto c = enum_divisors(a); ll d = b - a; ll left = upper_bound(all(c), d) - c.begin() - 1; if (c[left] > d) left--; ans.pb(c[left]); a += c[left]; if (a == b) break; } cout << ans.size() << endl; print(ans); } }