結果

問題 No.80 四角形を描こう
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 22:33:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 1,651 bytes
コンパイル時間 1,381 ms
コンパイル使用メモリ 109,884 KB
実行使用メモリ 25,832 KB
最終ジャッジ日時 2024-10-10 22:33:08
合計ジャッジ時間 1,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,824 KB
testcase_01 AC 24 ms
23,836 KB
testcase_02 AC 24 ms
24,024 KB
testcase_03 AC 24 ms
23,824 KB
testcase_04 AC 24 ms
23,636 KB
testcase_05 AC 24 ms
25,624 KB
testcase_06 AC 24 ms
23,532 KB
testcase_07 AC 24 ms
23,640 KB
testcase_08 AC 24 ms
25,832 KB
testcase_09 AC 25 ms
23,788 KB
testcase_10 AC 25 ms
21,556 KB
testcase_11 AC 37 ms
21,684 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;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("14");
            //12
            //最も大きい四角形は横4cm、縦3cmの長方形です。
            //面積は4×3なので12が答えです。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("15");
            //12
            //サンプル1と同じです。
            //A君は鉛筆を使い切らないといけないわけではありません。
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("16");
            //16
            //1辺が4cmの正方形が描けます。面積は16です
        }
        else if (InputPattern == "Input4") {
            WillReturn.Add("3");
            //0
            //四角形が描けないときの面積は0です
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int D = int.Parse(InputList[0]);

        int MaxMenseki = 0;
        for (int X = 1; X * 2 <= D; X++) {
            for (int Y = X; X * 2 + Y * 2 <= D; Y++) {
                int Memseki = X * Y;
                if (MaxMenseki < Memseki)
                    MaxMenseki = Memseki;
            }
        }
        Console.WriteLine(MaxMenseki);
    }
}

0