結果

問題 No.10 +か×か
ユーザー te-shte-sh
提出日時 2017-02-08 15:58:20
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 13 ms / 5,000 ms
コード長 750 bytes
コンパイル時間 693 ms
コンパイル使用メモリ 101,568 KB
実行使用メモリ 7,388 KB
最終ジャッジ日時 2024-06-12 06:59:02
合計ジャッジ時間 1,362 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 12 ms
7,388 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 13 ms
7,208 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

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

  auto dp = new bool[][](n + 1, t + 1);
  dp[n][t] = true;

  foreach_reverse (i; 0..n)
    foreach (j; 0..t+1)
      if (dp[i + 1][j]) {
        auto a = ai[i];
        if (j >= a) dp[i][j - a] = true;
        if (j % a == 0) dp[i][j / a] = true;
      }

  auto calc(size_t i, int acc) {
    if (i == n) return "";

    auto a = ai[i];
    if (acc + a <= t && dp[i + 1][acc + a]) return "+" ~ calc(i + 1, acc + a);
    if (acc * a <= t && dp[i + 1][acc * a]) return "*" ~ calc(i + 1, acc * a);

    return "E";
  }

  auto r = calc(1, ai.front);
  writeln(r);
}
0