結果
問題 | No.14 最小公倍数ソート |
ユーザー | motxx |
提出日時 | 2014-11-02 02:01:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 720 bytes |
コンパイル時間 | 1,274 ms |
コンパイル使用メモリ | 160,472 KB |
実行使用メモリ | 10,400 KB |
最終ジャッジ日時 | 2024-06-09 18:42:14 |
合計ジャッジ時間 | 8,016 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 136 ms
6,944 KB |
testcase_04 | TLE | - |
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:10:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | for(int i=0;i<N;i++) scanf("%d", a+i); | ~~~~~^~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; inline ll lcm(ll a, ll b) { return a*b/__gcd(a,b); } int main() { int N; cin >> N; int a[N], res[N]; for(int i=0;i<N;i++) scanf("%d", a+i); res[0] = a[0]; int rcnt = 1; for(int i=0;i<N-1;i++) { ll mn = 1<<29; for(int j=i+1;j<N;j++) { mn = min(mn, lcm(res[i], a[j])); } int idx, raw = 1<<29; for(int j=i+1;j<N;j++) { if(mn == lcm(res[i], a[j])) { if(a[j] < raw) { raw = a[j]; idx = j; } } } swap(a[i+1], a[idx]); res[rcnt++] = raw; } for(int i=0;i<N;i++) { if(i) printf(" "); printf("%d", res[i]); } puts(""); return 0; }