結果
問題 | No.14 最小公倍数ソート |
ユーザー | goodbaton |
提出日時 | 2015-07-28 21:04:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,545 bytes |
コンパイル時間 | 612 ms |
コンパイル使用メモリ | 76,044 KB |
実行使用メモリ | 10,268 KB |
最終ジャッジ日時 | 2024-07-17 13:24:19 |
合計ジャッジ時間 | 7,033 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:46:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 46 | scanf("%d",&n); | ~~~~~^~~~~~~~~ main.cpp:49:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | scanf("%d",&a[i]); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <cstdio> #include <cstdlib> #include <iostream> #include <string> #include <cmath> #include <algorithm> #include <vector> #include <queue> #include <stack> #include <map> #include <set> #include <cstring> typedef long long ll; using namespace std; #define mod 1000003 #define INF 1000000000 #define LLINF 2000000000000000000LL #define SIZE 10000 vector<int> factor(int n){ vector<int> ret,ret2; for(int i=1;i*i<=n;i++){ if(n%i==0){ ret.push_back(i); if(i*i<n) ret.push_back(n/i); } } for(int i=0;i<ret2.size();i++){ ret.push_back(ret2[ret2.size()-1-i]); } return ret; } int main(){ int n,a[SIZE],k[SIZE+1],now; vector<int> fac,ans; scanf("%d",&n); for(int i=0;i<n;i++){ scanf("%d",&a[i]); k[a[i]]++; } k[a[0]]--; now = a[0]; ans.push_back(a[0]); for(int i=0;i<n-1;i++){ bool f = true; for(int l=1;;l++){ vector<int> fac = factor(now*l); for(int j=0;j<fac.size() && fac[j]<=10000;j++){ if(k[fac[j]]>0){ ans.push_back(fac[j]); k[fac[j]]--; now = fac[j]; f = false; break; } } if(!f) break; } } for(int i=0;i<ans.size();i++){ printf(i<ans.size()-1?"%d ":"%d\n",ans[i]); } return 0; }