結果
| 問題 |
No.80 四角形を描こう
|
| コンテスト | |
| ユーザー |
aketijyuuzou
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 8 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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);
}
}
aketijyuuzou