結果

問題 No.786 京都大学の過去問
ユーザー keymoonkeymoon
提出日時 2019-04-25 14:07:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 994 bytes
コンパイル時間 3,220 ms
コンパイル使用メモリ 101,576 KB
実行使用メモリ 21,536 KB
最終ジャッジ日時 2023-08-12 05:51:56
合計ジャッジ時間 3,961 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
19,360 KB
testcase_01 AC 56 ms
21,536 KB
testcase_02 AC 57 ms
21,496 KB
testcase_03 AC 55 ms
21,396 KB
testcase_04 AC 54 ms
21,452 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
using LayoutKind = System.Runtime.InteropServices.LayoutKind;
using Debug = System.Diagnostics.Debug;
using StructLayoutAttribute = System.Runtime.InteropServices.StructLayoutAttribute;
using FieldOffsetAttribute = System.Runtime.InteropServices.FieldOffsetAttribute;
using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions;
using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute;
using System.Runtime.CompilerServices;

static class P
{
    static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        long[] dp = new long[n + 1];
        dp[0] = 1;
        dp[1] = 1;
        for (int i = 2; i <= n; i++) dp[i] = dp[i - 2] + dp[i - 1];
        Console.WriteLine(dp.Last());
    }
}
0