結果
問題 | No.14 最小公倍数ソート |
ユーザー | eitaho |
提出日時 | 2015-02-14 04:22:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 4,652 ms / 5,000 ms |
コード長 | 1,383 bytes |
コンパイル時間 | 809 ms |
コンパイル使用メモリ | 79,856 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 19:56:23 |
合計ジャッジ時間 | 52,120 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 50 ms
6,940 KB |
testcase_04 | AC | 4,652 ms
6,940 KB |
testcase_05 | AC | 1,553 ms
6,940 KB |
testcase_06 | AC | 1,811 ms
6,944 KB |
testcase_07 | AC | 2,361 ms
6,944 KB |
testcase_08 | AC | 3,136 ms
6,940 KB |
testcase_09 | AC | 4,250 ms
6,944 KB |
testcase_10 | AC | 4,143 ms
6,940 KB |
testcase_11 | AC | 4,308 ms
6,940 KB |
testcase_12 | AC | 4,463 ms
6,944 KB |
testcase_13 | AC | 4,521 ms
6,940 KB |
testcase_14 | AC | 4,465 ms
6,940 KB |
testcase_15 | AC | 4,427 ms
6,940 KB |
testcase_16 | AC | 1,657 ms
6,944 KB |
testcase_17 | AC | 1,189 ms
6,944 KB |
testcase_18 | AC | 533 ms
6,940 KB |
testcase_19 | AC | 2,827 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:55:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 55 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:56:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 56 | rep(i, N) scanf("%d", &A[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <iostream> #include <sstream> #include <string> #include <vector> #include <stack> #include <queue> #include <set> #include <map> #include <algorithm> #include <cstdio> #include <cstdlib> #include <cstring> #include <cctype> #include <cmath> #include <cassert> #include <climits> #include <numeric> #include <functional> #include <time.h> using namespace std; typedef long long ll; typedef pair<int, int> Pii; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define FOR(i, a, b) for (int i = (int)a; i <= (int)b; i++) template<class T> void checkmin(T &a, T b) { if (b < a) a = b; } template<class T> void checkmax(T &a, T b) { if (b > a) a = b; } int N; int A[10000]; int GCD(int a, int b) { return b == 0 ? a : GCD(b, a % b); } int LCM(int a, int b) { return a / GCD(a, b) * b; } void solve() { rep(i, N - 1) { int bestLcm = INT_MAX, bestVal = INT_MAX, bestIndex = -1; FOR(j, i + 1, N - 1) { int lcm = LCM(A[i], A[j]); if (lcm < bestLcm || lcm == bestLcm && A[j] < bestVal) { bestLcm = lcm; bestVal = A[j]; bestIndex = j; } } swap(A[i + 1], A[bestIndex]); } rep(i, N) { if (i > 0) printf(" "); printf("%d", A[i]); } } int main() { scanf("%d", &N); rep(i, N) scanf("%d", &A[i]); solve(); return 0; }