結果
問題 | No.314 ケンケンパ |
ユーザー | Leonardone |
提出日時 | 2015-12-08 08:54:57 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 339 ms / 1,000 ms |
コード長 | 277 bytes |
コンパイル時間 | 14,803 ms |
コンパイル使用メモリ | 189,320 KB |
実行使用メモリ | 34,728 KB |
最終ジャッジ日時 | 2024-09-14 19:34:44 |
合計ジャッジ時間 | 22,660 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 338 ms
34,728 KB |
testcase_01 | AC | 335 ms
34,056 KB |
testcase_02 | AC | 335 ms
34,464 KB |
testcase_03 | AC | 336 ms
34,444 KB |
testcase_04 | AC | 335 ms
34,056 KB |
testcase_05 | AC | 335 ms
33,672 KB |
testcase_06 | AC | 336 ms
34,056 KB |
testcase_07 | AC | 335 ms
33,672 KB |
testcase_08 | AC | 336 ms
33,800 KB |
testcase_09 | AC | 335 ms
34,080 KB |
testcase_10 | AC | 339 ms
34,208 KB |
testcase_11 | AC | 337 ms
34,464 KB |
testcase_12 | AC | 336 ms
33,928 KB |
testcase_13 | AC | 336 ms
34,048 KB |
testcase_14 | AC | 337 ms
33,776 KB |
testcase_15 | AC | 336 ms
34,176 KB |
testcase_16 | AC | 338 ms
34,272 KB |
testcase_17 | AC | 336 ms
33,760 KB |
testcase_18 | AC | 338 ms
33,932 KB |
testcase_19 | AC | 339 ms
34,052 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (562 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
// yukicoder My Practice // author: Leonardone @ NEETSDKASU open System let n = int64(Console.ReadLine()) let md = 1000000007L let rec f a b c n = if n = 0L then (a + b + c) % md else f ((b + c) % md) a b (n - 1L) printf "%d" <| f 0L 1L 0L (n - 1L)