結果
| 問題 |
No.44 DPなすごろく
|
| ユーザー |
ooh_21
|
| 提出日時 | 2018-02-01 12:06:50 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 24 ms / 5,000 ms |
| コード長 | 455 bytes |
| コンパイル時間 | 935 ms |
| コンパイル使用メモリ | 110,632 KB |
| 実行使用メモリ | 25,924 KB |
| 最終ジャッジ日時 | 2024-12-31 00:15:43 |
| 合計ジャッジ時間 | 2,433 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 20 |
コンパイルメッセージ
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;
namespace lecture
{
class MainClass
{
public static void Main(string[] args)
{
int N = int.Parse(Console.ReadLine());
long[] P = new long[100];
P[0] = 1;
P[1] = 1;
for (int i = 2; i <= N; i++)
{
P[i] = P[i - 1] + P[i - 2];
}
Console.WriteLine(P[N]);
}
}
}
ooh_21