結果

問題 No.1184 Hà Nội
ユーザー shi-moshi-mo
提出日時 2020-09-29 03:34:19
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 120 bytes
コンパイル時間 770 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-07-03 05:18:05
合計ジャッジ時間 4,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,288 KB
testcase_01 AC 80 ms
12,160 KB
testcase_02 AC 83 ms
12,416 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 82 ms
12,160 KB
testcase_07 AC 80 ms
12,160 KB
testcase_08 RE -
testcase_09 AC 79 ms
12,160 KB
testcase_10 AC 82 ms
12,288 KB
testcase_11 RE -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 81 ms
12,160 KB
testcase_15 AC 82 ms
12,288 KB
testcase_16 AC 82 ms
12,160 KB
testcase_17 AC 82 ms
12,160 KB
testcase_18 AC 78 ms
12,288 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, l = gets.split.map(&:to_i)
D = 998244353

def hanoi(n)
  return 1 if n <= 1
  hanoi(n-1)*2 + 1
end

puts hanoi(n-l+1)
0