結果
| 問題 | No.521 Cheeses and a Mousetrap(チーズとネズミ捕り) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-05 15:09:35 |
| 言語 | C# (.NET 8.0.404) |
| 結果 |
AC
|
| 実行時間 | 65 ms / 2,000 ms |
| コード長 | 637 bytes |
| 記録 | |
| コンパイル時間 | 8,673 ms |
| コンパイル使用メモリ | 169,752 KB |
| 実行使用メモリ | 186,540 KB |
| 最終ジャッジ日時 | 2025-12-05 15:09:47 |
| 合計ジャッジ時間 | 11,908 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 28 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (130 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
class Program
{
static void Main(string[] args)
{
string[] input = Console.ReadLine()!.Split(' ');
int total = int.Parse(input[0]);
int outNum = int.Parse(input[1]);
if (outNum == 0 || outNum > total)
{
Console.WriteLine(0);
}
else if (total % 2 == 0)
{
Console.WriteLine(total - 2);
}
else
{
if (outNum == total / 2 + 1)
{
Console.WriteLine(total - 1);
}
else
{
Console.WriteLine(total - 2);
}
}
}
}