結果

問題 No.14 最小公倍数ソート
ユーザー cielciel
提出日時 2014-11-16 17:23:05
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 487 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 44,928 KB
実行使用メモリ 10,024 KB
最終ジャッジ日時 2024-12-31 20:39:21
合計ジャッジ時間 70,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,760 KB
testcase_01 AC 1 ms
9,760 KB
testcase_02 AC 2 ms
9,512 KB
testcase_03 AC 68 ms
9,508 KB
testcase_04 TLE -
testcase_05 AC 2,152 ms
6,820 KB
testcase_06 AC 2,540 ms
6,820 KB
testcase_07 AC 3,302 ms
6,816 KB
testcase_08 AC 4,330 ms
6,816 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,437 ms
6,820 KB
testcase_17 AC 1,724 ms
6,816 KB
testcase_18 AC 770 ms
6,820 KB
testcase_19 AC 3,982 ms
9,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~
main.cpp:12:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |         for(int i=0;i<n;i++)scanf("%d",&v[i].second);
      |                             ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <vector>
#include <algorithm>
#include <cstdio>
using namespace std;

int gcd(int x,int y){return y?gcd(y,x%y):x;}
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);
}
0