結果

問題 No.420 mod2漸化式
ユーザー shi-moshi-mo
提出日時 2016-10-20 23:53:02
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 224 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-11-23 15:58:17
合計ジャッジ時間 37,899 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
17,536 KB
testcase_01 TLE -
testcase_02 AC 78 ms
17,408 KB
testcase_03 AC 79 ms
24,320 KB
testcase_04 AC 81 ms
17,408 KB
testcase_05 AC 87 ms
24,192 KB
testcase_06 AC 76 ms
17,664 KB
testcase_07 AC 186 ms
24,320 KB
testcase_08 AC 487 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 687 ms
12,032 KB
testcase_26 AC 253 ms
12,160 KB
testcase_27 AC 124 ms
12,288 KB
testcase_28 AC 88 ms
12,032 KB
testcase_29 AC 85 ms
12,160 KB
testcase_30 AC 84 ms
12,288 KB
testcase_31 AC 81 ms
12,288 KB
testcase_32 AC 84 ms
12,288 KB
testcase_33 AC 83 ms
12,160 KB
testcase_34 AC 80 ms
12,288 KB
testcase_35 AC 80 ms
29,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

x = gets.to_i

if 0 == x
  puts '1 0'
  exit 0
end

if 31 < x
  puts '0 0'
  exit 0
end

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 = (2**31 - 1) * c(30, x-1)

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