結果
問題 | No.677 10^Nの約数 |
ユーザー | mmn15277198 |
提出日時 | 2020-07-04 22:47:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 772 bytes |
コンパイル時間 | 860 ms |
コンパイル使用メモリ | 89,556 KB |
実行使用メモリ | 134,396 KB |
最終ジャッジ日時 | 2024-09-19 14:37:24 |
合計ジャッジ時間 | 6,210 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 11 ms
5,376 KB |
testcase_09 | AC | 44 ms
5,456 KB |
testcase_10 | AC | 167 ms
11,600 KB |
testcase_11 | AC | 688 ms
36,176 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#include <vector> #include <iostream> #include <algorithm> #include <functional> #include <string> #include <math.h> #include <map> using namespace std; int main(){ int n; cin >> n; vector<int> a(2*n,0); for(int i=0;i<2*n;i++){ if(i<n){ a[i]=2; }else{ a[i]=5; } } vector<unsigned long long> output; for(int i=0;i<(1<<2*n);i++){ vector<int> b(2*n,0); for(int j=0;j<2*n;j++){ if(i&(1<<j)){ b[j]=1; }else{ b[j]=0; } } unsigned long long ans=1; for(int j=0;j<2*n;j++){ if(b[j]==0)continue; ans*=b[j]*a[j]; } output.push_back(ans); } sort(output.begin(),output.end()); output.erase(unique(output.begin(),output.end()),output.end()); for(int i=0;i<output.size();i++){ cout << output[i] << endl; } return 0; }