結果

問題 No.1429 Simple Dowsing
ユーザー kakel-sankakel-san
提出日時 2024-07-10 22:11:49
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 8,333 ms
コンパイル使用メモリ 166,032 KB
実行使用メモリ 46,936 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-10 22:12:01
合計ジャッジ時間 11,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
45,656 KB
testcase_01 AC 77 ms
45,244 KB
testcase_02 AC 77 ms
45,656 KB
testcase_03 AC 89 ms
46,808 KB
testcase_04 AC 89 ms
46,936 KB
testcase_05 AC 76 ms
45,680 KB
testcase_06 AC 88 ms
46,552 KB
testcase_07 AC 76 ms
45,272 KB
testcase_08 AC 77 ms
45,784 KB
testcase_09 AC 78 ms
45,880 KB
testcase_10 AC 78 ms
45,868 KB
testcase_11 AC 77 ms
45,912 KB
testcase_12 AC 77 ms
45,272 KB
testcase_13 AC 77 ms
45,784 KB
testcase_14 AC 76 ms
45,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        WriteLine("? 0 0");
        var x = NN;
        WriteLine("? 0 100");
        var y = NN;
        for (var i = 0; i <= 100; ++i) for (var j = 0; j <= 100; ++j)
        {
            if (i * i + j * j == x && i * i + (100 - j) * (100 - j) == y)
            {
                WriteLine($"! {i} {j}");
                return;
            }
        }
    }
}
0