結果

問題 No.314 ケンケンパ
ユーザー nanophoto12nanophoto12
提出日時 2015-12-08 01:21:37
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 607 bytes
コンパイル時間 4,324 ms
コンパイル使用メモリ 112,772 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-09-14 18:58:26
合計ジャッジ時間 2,375 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
39,936 KB
testcase_01 AC 23 ms
17,664 KB
testcase_02 AC 22 ms
17,664 KB
testcase_03 AC 23 ms
17,408 KB
testcase_04 AC 23 ms
17,792 KB
testcase_05 AC 22 ms
17,536 KB
testcase_06 AC 22 ms
17,536 KB
testcase_07 AC 23 ms
17,664 KB
testcase_08 AC 23 ms
17,792 KB
testcase_09 AC 23 ms
17,664 KB
testcase_10 AC 23 ms
17,664 KB
testcase_11 AC 22 ms
17,408 KB
testcase_12 AC 22 ms
17,664 KB
testcase_13 AC 22 ms
17,536 KB
testcase_14 AC 24 ms
17,792 KB
testcase_15 AC 24 ms
17,288 KB
testcase_16 AC 24 ms
17,660 KB
testcase_17 AC 29 ms
19,456 KB
testcase_18 AC 51 ms
28,288 KB
testcase_19 AC 76 ms
40,320 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.Collections.Generic;
using System.Linq;
using System.Text;

namespace No314
{
	class MainClass
	{
		public static void Main (string[] args)
		{
			var n = Convert.ToInt32(Console.ReadLine ());

			var k0 = new long[n + 1];
			var k1 = new long[n + 1];
			var k2 = new long[n + 1];

			k0 [0] = 1;

			long mod = 1000000007;

			for (int i = 1; i <= n; i++) {
				k0 [i] = k1 [i - 1] % mod + k2 [i - 1] % mod;
				k1 [i] = k0 [i - 1] % mod;
				k2 [i] = k1 [i - 1] % mod;
			}
			long sum = k0 [n] + k1 [n] + k2 [n];
			sum %= mod;
			Console.WriteLine (sum.ToString ());
		}
	}
}
0