結果
問題 | No.14 最小公倍数ソート |
ユーザー | pluto77 |
提出日時 | 2017-12-03 11:23:12 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 540 bytes |
コンパイル時間 | 2,318 ms |
コンパイル使用メモリ | 65,776 KB |
実行使用メモリ | 13,632 KB |
最終ジャッジ日時 | 2024-11-28 09:07:13 |
合計ジャッジ時間 | 72,333 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,016 KB |
testcase_01 | AC | 2 ms
10,016 KB |
testcase_02 | AC | 2 ms
10,020 KB |
testcase_03 | AC | 67 ms
10,020 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 2,141 ms
6,820 KB |
testcase_06 | AC | 2,526 ms
6,816 KB |
testcase_07 | AC | 3,287 ms
6,820 KB |
testcase_08 | AC | 4,325 ms
6,820 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 2,397 ms
6,820 KB |
testcase_17 | AC | 1,713 ms
6,820 KB |
testcase_18 | AC | 763 ms
6,816 KB |
testcase_19 | AC | 3,962 ms
10,148 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int gcd(int x,int y){ while(y!=0){ int temp=x%y; x=y; y=temp; } return x; } int lcm(int x, int y){ return x/gcd(x,y)*y; } int main(){ int n; cin>>n; vector<pair<int,int> >a(n); for(int i=0;i<n;i++) cin>>a[i].second; for(int i=0;i<n;i++){ for(int j=i+1;j<n;j++){ a[j].first=lcm(a[i].second,a[j].second); } sort(a.begin()+i+1,a.end()); } cout<<a[0].second; for(int i=1;i<n;i++) cout<<' '<<a[i].second; cout<<endl; return 0; }