結果

問題 No.14 最小公倍数ソート
ユーザー te-shte-sh
提出日時 2017-02-08 17:15:29
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 3,033 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 976 ms
コンパイル使用メモリ 109,536 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 07:00:29
合計ジャッジ時間 34,861 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 33 ms
6,940 KB
testcase_04 AC 3,033 ms
6,944 KB
testcase_05 AC 1,028 ms
6,944 KB
testcase_06 AC 1,195 ms
6,944 KB
testcase_07 AC 1,548 ms
6,940 KB
testcase_08 AC 2,052 ms
6,940 KB
testcase_09 AC 2,767 ms
6,940 KB
testcase_10 AC 2,757 ms
6,940 KB
testcase_11 AC 2,817 ms
6,940 KB
testcase_12 AC 2,874 ms
6,940 KB
testcase_13 AC 2,921 ms
6,940 KB
testcase_14 AC 2,855 ms
6,940 KB
testcase_15 AC 2,979 ms
6,944 KB
testcase_16 AC 1,103 ms
6,944 KB
testcase_17 AC 786 ms
6,944 KB
testcase_18 AC 358 ms
6,944 KB
testcase_19 AC 1,855 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/numeric.d(2999): Warning: cannot inline function `std.numeric.gcdImpl!uint.gcdImpl`

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.numeric;   // gcd

void main()
{
  auto n = readln.chomp.to!size_t;
  auto ai = readln.split.to!(int[]);

  auto bi = [ai.front]; ai = ai.drop(1);

  while (!ai.empty) {
    auto i = calcMin(ai, bi.back);
    bi ~= ai[i];
    ai = ai.remove(i);
  }

  writeln(bi.to!(string[]).join(" "));
}

auto calcMin(Range)(Range ai, int b)
{
  auto minLcm = int.max, minA = 0, minIndex = size_t(0);
  foreach (i, a; ai) {
    auto lcm = a / gcd(a, b) * b;
    if (minLcm > lcm || minLcm == lcm && minA > a) {
      minLcm = lcm;
      minA = a;
      minIndex = i;
    } 
  }
  return minIndex;
}
0