結果
| 問題 | No.240 ナイト散歩 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-16 13:22:52 |
| 言語 | C# (.NET 8.0.404) |
| 結果 |
AC
|
| 実行時間 | 72 ms / 2,000 ms |
| コード長 | 779 bytes |
| 記録 | |
| コンパイル時間 | 8,578 ms |
| コンパイル使用メモリ | 170,684 KB |
| 実行使用メモリ | 188,008 KB |
| 最終ジャッジ日時 | 2025-12-16 13:23:04 |
| 合計ジャッジ時間 | 11,597 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 30 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (117 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System.Numerics;
public class Program
{
public static void Main()
{
//BigInteger num = BigInteger.Parse(Console.ReadLine() ?? string.Empty);
//int num = int.Parse(Console.ReadLine() ?? string.Empty);
string[] moji = (Console.ReadLine() ?? string.Empty).Trim().Split(' ');
//string moji = Console.ReadLine() ?? string.Empty;
int a = int.Parse(moji[0]);
int b = int.Parse(moji[1]);
if(a <= -7||a >= 7 || b >= 7 || b <= -7)
{
Console.WriteLine("NO");
}
else if(a==5&&b==5||a==-6&&b==0||a==-1&&b==-5||a==5&&b==-3||a==2&&b==-2)
{
Console.WriteLine("NO");
}
else
{
Console.WriteLine("YES");
}
}
}