結果

問題 No.2252 Find Zero
ユーザー kakel-sankakel-san
提出日時 2023-03-24 22:50:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 4,372 ms
コンパイル使用メモリ 106,624 KB
実行使用メモリ 34,528 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-09-18 17:25:29
合計ジャッジ時間 6,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
34,272 KB
testcase_01 AC 86 ms
33,888 KB
testcase_02 AC 65 ms
34,528 KB
testcase_03 AC 76 ms
34,272 KB
testcase_04 AC 68 ms
34,528 KB
testcase_05 AC 68 ms
34,136 KB
testcase_06 AC 68 ms
34,264 KB
testcase_07 AC 66 ms
33,888 KB
testcase_08 AC 73 ms
34,144 KB
testcase_09 AC 82 ms
34,272 KB
testcase_10 AC 71 ms
34,520 KB
testcase_11 AC 68 ms
34,136 KB
testcase_12 AC 69 ms
34,136 KB
testcase_13 AC 72 ms
34,528 KB
testcase_14 AC 70 ms
34,400 KB
testcase_15 AC 68 ms
34,392 KB
testcase_16 AC 71 ms
34,520 KB
testcase_17 AC 72 ms
34,392 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

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[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        for (var i = 0; i + 1 < n; i += 2)
        {
            WriteLine($"? {i} {i + 1}");
            var z = NN;
            if (z == i)
            {
                WriteLine($"! {i + 1}");
                return;
            }
            if (z == i + 1)
            {
                WriteLine($"! {i}");
                return;
            }
        }
        WriteLine($"! {n - 1}");
    }
}
0