結果

問題 No.677 10^Nの約数
ユーザー NoiriNoiri
提出日時 2019-02-27 18:09:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 1,860 ms
コンパイル使用メモリ 174,144 KB
実行使用メモリ 814,164 KB
最終ジャッジ日時 2024-06-23 05:18:04
合計ジャッジ時間 6,409 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 17 ms
7,756 KB
testcase_08 AC 69 ms
20,172 KB
testcase_09 AC 375 ms
69,196 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;

int main(){
    ll n;
    cin >> n;
    ll N = pow(10, n);
    vector<ll> v = {1, 2, 5, 10};
    vector<ll> u = {1, 2, 5, 10};
    for(int i=0; i<n; i++){
        int sz = v.size();
        for(auto x: u){
            for(int j=0; j<sz; j++){
                ll tmp = v[j] * x;
                if(N % tmp == 0) v.push_back(tmp);
            }
        }
    }
    sort(v.begin(), v.end());
    v.erase(unique(v.begin(), v.end()), v.end());
    for(auto ans: v) cout << ans << endl;
    return 0;
}
0