結果
| 問題 | No.240 ナイト散歩 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-16 13:22:52 |
| 言語 | C# (.NET 10.0.201) |
| 結果 |
AC
|
| 実行時間 | 70 ms / 2,000 ms |
| + 862µs | |
| コード長 | 779 bytes |
| 記録 | |
| コンパイル時間 | 5,149 ms |
| コンパイル使用メモリ | 169,420 KB |
| 実行使用メモリ | 191,580 KB |
| 最終ジャッジ日時 | 2026-07-19 13:56:12 |
| 合計ジャッジ時間 | 8,774 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 30 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (94 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.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");
}
}
}