結果

問題 No.501 穴と文字列
ユーザー mori_chibimori_chibi
提出日時 2017-08-21 10:00:24
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,173 bytes
コンパイル時間 1,321 ms
コンパイル使用メモリ 108,724 KB
実行使用メモリ 49,056 KB
最終ジャッジ日時 2024-10-15 00:47:32
合計ジャッジ時間 16,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,748 ms
40,704 KB
testcase_01 AC 1,681 ms
40,704 KB
testcase_02 AC 25 ms
17,792 KB
testcase_03 AC 24 ms
17,536 KB
testcase_04 AC 24 ms
17,792 KB
testcase_05 AC 24 ms
17,664 KB
testcase_06 AC 25 ms
17,664 KB
testcase_07 AC 27 ms
17,664 KB
testcase_08 AC 25 ms
17,536 KB
testcase_09 AC 25 ms
17,792 KB
testcase_10 AC 24 ms
17,792 KB
testcase_11 AC 24 ms
17,920 KB
testcase_12 AC 24 ms
17,536 KB
testcase_13 AC 23 ms
17,920 KB
testcase_14 AC 24 ms
17,920 KB
testcase_15 AC 23 ms
17,920 KB
testcase_16 AC 23 ms
17,792 KB
testcase_17 AC 23 ms
17,920 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 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 HoleString
{
    class Program
    {
        static void Main(string[] args)
        {
            const string h0 = "C";
            const string h1 = "A";
            const string h2 = "B";
            string[] param = Console.ReadLine().Split(' ');
            int n = int.Parse(param[0]);
            int d = int.Parse(param[1]);
            int num0, num1, num2;
            string r = null;
            if (d < 1)
            {
                num0 = n;
                num1 = 0;
                num2 = 0;
            }
            else if( n < d)
            {
                num0 = 0;
                num1 = 2 * n - d;
                num2 = d - n;
            }
            else
            {
                num0 = n - d;
                num1 = d;
                num2 = 0;
            }
            for (int i = 0; i < num1; i++)
            {
                r = r + h1;
            }
            for (int i = 0; i < num2; i++)
            {
                r = r + h2;
            }
            for (int i = 0; i < num0; i++)
            {
                r = r + h0;
            }
            Console.WriteLine(r);
        }
    }
}
0