結果

問題 No.804 野菜が苦手
ユーザー yurarayurara
提出日時 2019-04-09 22:01:35
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 114,144 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-07-05 03:05:51
合計ジャッジ時間 2,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
23,092 KB
testcase_02 AC 28 ms
24,880 KB
testcase_03 AC 28 ms
22,964 KB
testcase_04 AC 27 ms
25,264 KB
testcase_05 AC 27 ms
25,384 KB
testcase_06 AC 28 ms
25,008 KB
testcase_07 WA -
testcase_08 AC 28 ms
25,128 KB
testcase_09 AC 28 ms
25,132 KB
testcase_10 AC 28 ms
24,880 KB
testcase_11 AC 29 ms
27,128 KB
testcase_12 AC 29 ms
25,132 KB
testcase_13 AC 29 ms
27,132 KB
testcase_14 AC 29 ms
26,920 KB
testcase_15 AC 29 ms
25,004 KB
testcase_16 AC 28 ms
25,104 KB
testcase_17 AC 29 ms
25,132 KB
testcase_18 AC 28 ms
25,012 KB
testcase_19 AC 28 ms
25,348 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.Linq;

public class Program
{
    public static void Main()
    {
        var lst = Console.ReadLine().Split(' ').
                        Select(s => int.Parse(s)).ToList();

        var a = lst[0]; var b = lst[1]; var c = lst[2]; var d = lst[3];

        for (; ; )
        {
            if ((a >= 0) && (b >= c) && (d >= c + 1))
            {
                a--;
                b -= c;
                d -= (c + 1);
            }
            else
                break;
        }

        Console.Write("{0}", (lst[0]-a).ToString());

        return;
    }
}
0