結果

問題 No.346 チワワ数え上げ問題
ユーザー Akihiro ShojiAkihiro Shoji
提出日時 2016-02-27 22:29:18
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 838 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 75,332 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-09-02 20:50:23
合計ジャッジ時間 1,830 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
4,372 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
4,372 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
4,368 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1 ms
4,372 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ulong factorial(ulong n) {
  ulong t = 1;

  for (ulong i; i < n; i++)
    t *= (n - i);

  return t;
}

ulong p(ulong n, ulong r) {
  ulong t = 1;

  for (ulong i; i < r; i++)
    t *= (n - i);

  return t;
}

ulong c(ulong n, ulong r) {
  return p(n, r) / r.factorial; 
}

void main() {
  dchar[] cwws;
  size_t idx;
  size_t count;

  foreach (c; cwws) {
    if (c == 'c' || c == 'w') {
      if (cwws.length - 2 < idx) {
        break;
      }

      if (c == 'c') {
        ulong ws;
        foreach (w; cwws[(idx + 1)..$]) {
          if (w == 'w') {
            ws++;
          }
        }

        if (1 < ws) {
          count += ws.c(2);
        } else {
          break;
        }
      }

    }
    idx++;
  }

  writeln(count);
}
0