結果
問題 | No.14 最小公倍数ソート |
ユーザー | ciel |
提出日時 | 2014-11-16 17:32:46 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 3,963 ms / 5,000 ms |
コード長 | 628 bytes |
コンパイル時間 | 662 ms |
コンパイル使用メモリ | 44,928 KB |
実行使用メモリ | 7,040 KB |
最終ジャッジ日時 | 2024-12-31 20:45:41 |
合計ジャッジ時間 | 43,983 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 55 ms
7,040 KB |
testcase_04 | AC | 3,963 ms
6,912 KB |
testcase_05 | AC | 1,357 ms
7,040 KB |
testcase_06 | AC | 1,578 ms
6,912 KB |
testcase_07 | AC | 2,039 ms
7,040 KB |
testcase_08 | AC | 2,670 ms
7,040 KB |
testcase_09 | AC | 3,544 ms
6,912 KB |
testcase_10 | AC | 3,492 ms
7,040 KB |
testcase_11 | AC | 3,608 ms
7,040 KB |
testcase_12 | AC | 3,709 ms
7,040 KB |
testcase_13 | AC | 3,754 ms
6,912 KB |
testcase_14 | AC | 3,672 ms
7,040 KB |
testcase_15 | AC | 3,787 ms
7,040 KB |
testcase_16 | AC | 1,468 ms
6,912 KB |
testcase_17 | AC | 1,045 ms
6,912 KB |
testcase_18 | AC | 480 ms
7,040 KB |
testcase_19 | AC | 2,451 ms
7,040 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:19:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | scanf("%d",&n); | ~~~~~^~~~~~~~~ main.cpp:21:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 21 | for(int i=0;i<n;i++)scanf("%d",&v[i].second); | ~~~~~^~~~~~~~~~~~~~~~~~~
ソースコード
#include <vector> #include <algorithm> #include <cstdio> #define N 1000 using namespace std; int memo[N][N]; int gcd(int x,int y){ if(!y)return x; if(x<N&&y<N){ if(memo[x][y])return memo[x][y]; return memo[x][y]=gcd(y,x%y); } return gcd(y,x%y); } int lcm(int x,int y){return x/gcd(x,y)*y;} int main(){ int n,s=0; scanf("%d",&n); vector<pair<int,int> >v(n); for(int i=0;i<n;i++)scanf("%d",&v[i].second); for(int i=0;i<n-2;i++){ for(int j=i+1;j<n;j++)v[j].first=lcm(v[i].second,v[j].second); sort(v.begin()+i+1,v.end()); } for(int i=0;i<n;i++)printf(i<n-1?"%d ":"%d\n",v[i].second); }