結果

問題 No.250 atetubouのzetubou
ユーザー te-shte-sh
提出日時 2017-05-25 17:22:45
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 2,362 ms / 5,000 ms
コード長 645 bytes
コンパイル時間 1,356 ms
コンパイル使用メモリ 148,500 KB
実行使用メモリ 24,148 KB
最終ジャッジ日時 2024-06-12 19:25:42
合計ジャッジ時間 26,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,421 ms
23,576 KB
testcase_01 AC 239 ms
14,828 KB
testcase_02 AC 2,087 ms
23,040 KB
testcase_03 AC 2,362 ms
23,240 KB
testcase_04 AC 2,070 ms
24,148 KB
testcase_05 AC 2,119 ms
23,596 KB
testcase_06 AC 1,671 ms
23,020 KB
testcase_07 AC 816 ms
18,564 KB
testcase_08 AC 1,969 ms
23,888 KB
testcase_09 AC 1,506 ms
22,656 KB
testcase_10 AC 2,101 ms
22,976 KB
testcase_11 AC 1,271 ms
22,344 KB
testcase_12 AC 1,907 ms
22,916 KB
testcase_13 AC 1,053 ms
21,648 KB
testcase_14 AC 17 ms
9,472 KB
testcase_15 AC 46 ms
9,624 KB
testcase_16 AC 46 ms
8,612 KB
testcase_17 AC 45 ms
8,828 KB
testcase_18 AC 45 ms
8,052 KB
testcase_19 AC 46 ms
7,788 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.bigint;    // BigInt

void main()
{
  auto q = readln.chomp.to!size_t;
  auto di = new int[](q), xi = new int[](q), ti = new long[](q);
  foreach (i; 0..q) {
    auto rd = readln.split;
    di[i] = rd[0].to!int; xi[i] = rd[1].to!int; ti[i] = rd[2].to!long;
  }

  auto maxXD = zip(di, xi).map!"a[0] + a[1]".maxElement;
  auto facts = new BigInt[](maxXD);
  facts[0] = 1;
  foreach (i; 1..maxXD)
    facts[i] = facts[i-1] * i;

  foreach (d, x, t; lockstep(di, xi, ti)) {
    auto c = facts[x+d-1] / facts[x] / facts[d-1];
    writeln(c <= t ? "AC" : "ZETUBOU");
  }
}
0