結果

問題 No.314 ケンケンパ
ユーザー water_is_Iwater_is_I
提出日時 2017-09-24 05:42:39
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 945 bytes
コンパイル時間 1,622 ms
コンパイル使用メモリ 108,580 KB
実行使用メモリ 51,604 KB
最終ジャッジ日時 2024-11-14 06:19:07
合計ジャッジ時間 29,953 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 23 ms
30,588 KB
testcase_02 AC 23 ms
32,484 KB
testcase_03 TLE -
testcase_04 AC 22 ms
32,492 KB
testcase_05 AC 23 ms
32,368 KB
testcase_06 AC 23 ms
32,748 KB
testcase_07 AC 23 ms
30,324 KB
testcase_08 AC 38 ms
48,168 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace YukiCorderNo314_20170924 {
    class Program {

        static long courseNum=1;

        static void Main(string[] args) {

            int maxStep = int.Parse(Console.ReadLine());
            KenPa(maxStep);

            Console.WriteLine(courseNum%(10000000000+7));
        }

        static void KenPa(int maxStep) {
            int kenCount=0;
            for (int i = 0; i < maxStep; ) {
                maxStep--;
                //ケン確定
                if (kenCount == 0) {
                    kenCount++;
                }
                //パ確定
                else if (kenCount == 2) {
                    kenCount = 0;
                }
                //分岐確定
                else {
                    courseNum++;
                    kenCount++;
                    //Console.WriteLine("分岐!");
                    KenPa(maxStep);
                }
            }
        }
    }
}
0