結果
問題 | No.2123 Chalk Breaker |
ユーザー | 👑 obakyan |
提出日時 | 2022-11-08 23:54:04 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
RE
|
実行時間 | - |
コード長 | 246 bytes |
コンパイル時間 | 291 ms |
コンパイル使用メモリ | 6,816 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 07:40:36 |
合計ジャッジ時間 | 847 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
local n = io.read("*n") t[1] = 1 for i = 2, n do local c = 0 for j = 0, i - 1 do local a, b = j, i - j - 1 if 0 < a then c = c + t[a] end if 0 < b then c = c + t[b] end end t[i] = c / i end print(string.format("%.10f", t[n]))