結果
問題 | No.14 最小公倍数ソート |
ユーザー | goodbaton |
提出日時 | 2015-07-28 21:44:53 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 4,557 ms / 5,000 ms |
コード長 | 1,214 bytes |
コンパイル時間 | 587 ms |
コンパイル使用メモリ | 75,416 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-17 13:25:24 |
合計ジャッジ時間 | 50,709 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 49 ms
6,940 KB |
testcase_04 | AC | 4,557 ms
6,940 KB |
testcase_05 | AC | 1,525 ms
6,944 KB |
testcase_06 | AC | 1,785 ms
6,944 KB |
testcase_07 | AC | 2,329 ms
6,944 KB |
testcase_08 | AC | 3,070 ms
6,940 KB |
testcase_09 | AC | 4,155 ms
6,940 KB |
testcase_10 | AC | 4,081 ms
6,944 KB |
testcase_11 | AC | 4,205 ms
6,940 KB |
testcase_12 | AC | 4,354 ms
6,940 KB |
testcase_13 | AC | 4,398 ms
6,940 KB |
testcase_14 | AC | 4,275 ms
6,940 KB |
testcase_15 | AC | 4,447 ms
6,940 KB |
testcase_16 | AC | 1,641 ms
6,944 KB |
testcase_17 | AC | 1,172 ms
6,944 KB |
testcase_18 | AC | 524 ms
6,944 KB |
testcase_19 | AC | 2,770 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:37:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 37 | scanf("%d",&n); | ~~~~~^~~~~~~~~ main.cpp:40:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 40 | scanf("%d",&a[i]); | ~~~~~^~~~~~~~~~~~ main.cpp:34:31: warning: ‘mini’ may be used uninitialized in this function [-Wmaybe-uninitialized] 34 | int n,a[SIZE],minlcm,mina,mini,l; | ^~~~
ソースコード
#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 int gcd(int a,int b){ if(a==0) return b; return gcd(b%a,a); } int lcm(int a,int b){ return a/gcd(a,b)*b; } int main(){ int n,a[SIZE],minlcm,mina,mini,l; vector<int> ans; scanf("%d",&n); for(int i=0;i<n;i++){ scanf("%d",&a[i]); } ans.push_back(a[0]); for(int i=0;i<n-1;i++){ minlcm = mina = INF; for(int j=i+1;j<n;j++){ l = lcm(a[i],a[j]); if(minlcm>l || (minlcm==l && mina>a[j])){ minlcm = l; mina = a[j]; mini = j; } } ans.push_back(a[mini]); swap(a[mini],a[i+1]); } for(int i=0;i<ans.size();i++){ printf(i<ans.size()-1?"%d ":"%d\n",ans[i]); } return 0; }