結果

問題 No.420 mod2漸化式
ユーザー shi-moshi-mo
提出日時 2016-10-20 23:33:34
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 167 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 24,576 KB
最終ジャッジ日時 2024-11-22 16:58:01
合計ジャッジ時間 43,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
17,536 KB
testcase_01 TLE -
testcase_02 AC 88 ms
17,408 KB
testcase_03 AC 86 ms
24,320 KB
testcase_04 AC 87 ms
17,536 KB
testcase_05 AC 90 ms
24,576 KB
testcase_06 AC 85 ms
17,536 KB
testcase_07 AC 199 ms
24,320 KB
testcase_08 AC 516 ms
17,536 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 692 ms
24,320 KB
testcase_26 AC 259 ms
17,536 KB
testcase_27 AC 125 ms
24,448 KB
testcase_28 AC 92 ms
17,536 KB
testcase_29 AC 86 ms
12,288 KB
testcase_30 AC 87 ms
12,032 KB
testcase_31 AC 85 ms
12,288 KB
testcase_32 AC 85 ms
12,288 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

x = gets.to_i

def c(n, k)
  return 1 if 0 == k % n
  c(n-1, k) + c(n-1, k-1)
end

cnt = c(31, x)
sum = (1 <= x) ? ((2**31 - 1) * c(30, x-1)) : 0

puts "#{cnt} #{sum}"
0