結果

問題 No.73 helloworld
ユーザー cympfhcympfh
提出日時 2016-03-16 10:07:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 93 ms / 5,000 ms
コード長 311 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-29 13:11:20
合計ジャッジ時間 2,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 91 ms
12,416 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 93 ms
12,288 KB
testcase_06 AC 90 ms
12,160 KB
testcase_07 AC 91 ms
12,160 KB
testcase_08 AC 88 ms
12,160 KB
testcase_09 AC 87 ms
12,288 KB
testcase_10 AC 87 ms
12,160 KB
testcase_11 AC 91 ms
12,160 KB
testcase_12 AC 92 ms
12,288 KB
testcase_13 AC 89 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

xs={}
readlines.map(&:to_i).each.with_index {|n,i|
  xs[(97+i).chr] = n
}

ans = xs['h'] * xs['e'] * xs['w'] * xs['r'] * xs['d']

def c2(n)
  n*(n-1)/2
end

def o(n)
  (n/2) * (n - n/2)
end

def l(n)
  m = 0
  for k in 1..n
    m = [c2(n-k) * k, m].max
  end
  m
end

ans *= o(xs['o'])
ans *= l(xs['l'])

p ans
0