結果

問題 No.555 世界史のレポート
ユーザー cielciel
提出日時 2017-08-13 08:28:53
言語 Crystal
(1.11.2)
結果
TLE  
実行時間 -
コード長 133 bytes
コンパイル時間 13,438 ms
コンパイル使用メモリ 298,184 KB
実行使用メモリ 14,008 KB
最終ジャッジ日時 2024-06-30 19:12:39
合計ジャッジ時間 38,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,951 ms
6,944 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a,b,n,c,v)
return a<n ? [f(2*a,a,n,c,v)+c,f(a+b,b,n,c,v)].min+v : c
end
n,c,v=ARGF.gets_to_end.split.map(&.to_i)
p f(1,1,n,c,v)
0