結果

問題 No.346 チワワ数え上げ問題
ユーザー Akihiro ShojiAkihiro Shoji
提出日時 2016-02-27 22:37:08
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 2,768 ms
コンパイル使用メモリ 165,888 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-06-12 03:11:11
合計ジャッジ時間 4,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 21 ms
6,912 KB
testcase_11 AC 14 ms
5,376 KB
testcase_12 AC 16 ms
6,144 KB
testcase_13 AC 12 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 16 ms
5,888 KB
testcase_16 AC 17 ms
6,144 KB
testcase_17 AC 19 ms
6,912 KB
testcase_18 AC 19 ms
6,912 KB
testcase_19 AC 18 ms
6,400 KB
testcase_20 AC 21 ms
6,912 KB
testcase_21 AC 21 ms
6,912 KB
testcase_22 AC 20 ms
6,912 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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 = readln.chomp.split(string.init).to!(dchar[]);
  size_t idx;
  size_t count;
  ulong ws;

  foreach_reverse (c; cwws) {
    if (cwws.length - 2 < idx) {
      break;
    }

    if (c == 'c') {
      count += ws.c(2);
    } else if (c == 'w'){
      ws++;
    }
    idx++;
  }

  writeln(count);
}
0