結果
問題 | No.1243 約数加算 |
ユーザー | umezo |
提出日時 | 2020-10-02 22:30:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 688 bytes |
コンパイル時間 | 1,912 ms |
コンパイル使用メモリ | 208,664 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-07-17 22:03:06 |
合計ジャッジ時間 | 5,773 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 17 ms
6,944 KB |
testcase_04 | AC | 280 ms
6,940 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int main(){ int t; cin>>t; while(t--){ ll a,b; cin>>a>>b; vector<ll> B; while(a<b){ vector<ll> A; ll n=a; for(ll i=1;i*i<=n;i++){ if(n%i==0){ A.push_back(i); if(i*i!=n) A.push_back(n/i); } } sort(ALL(A)); auto itr=upper_bound(ALL(A),b-a); itr--; a+=*itr; B.push_back(*itr); } cout<<B.size()<<endl; rep(i,B.size()){ if(i) cout<<" "; cout<<B[i]; } cout<<endl; } return 0; }