結果
問題 | No.786 京都大学の過去問 |
ユーザー | kekurema |
提出日時 | 2019-03-18 16:31:02 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 480 bytes |
コンパイル時間 | 636 ms |
コンパイル使用メモリ | 108,980 KB |
実行使用メモリ | 30,460 KB |
最終ジャッジ日時 | 2024-07-18 11:01:30 |
合計ジャッジ時間 | 6,397 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
30,460 KB |
testcase_01 | AC | 19 ms
23,524 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace contest { class Program { static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); Console.WriteLine(f(N)); } static public int f(int N) { if (N == 1) return 1; if (N == 2) return 2; return f(N - 2) + f(N - 1); } } }