結果
問題 | No.14 最小公倍数ソート |
ユーザー | pluto77 |
提出日時 | 2017-12-03 11:23:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 540 bytes |
コンパイル時間 | 2,024 ms |
コンパイル使用メモリ | 65,636 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 05:18:17 |
合計ジャッジ時間 | 65,477 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 60 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 1,954 ms
5,376 KB |
testcase_06 | AC | 2,310 ms
5,376 KB |
testcase_07 | AC | 2,981 ms
5,376 KB |
testcase_08 | AC | 3,926 ms
5,376 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,131 ms
5,376 KB |
testcase_17 | AC | 1,549 ms
5,376 KB |
testcase_18 | AC | 695 ms
5,376 KB |
testcase_19 | AC | 3,624 ms
5,376 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; }