結果

問題 No.246 質問と回答
ユーザー 14番14番
提出日時 2016-05-14 23:42:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,028 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 111,840 KB
実行使用メモリ 42,652 KB
平均クエリ数 32.23
最終ジャッジ日時 2024-07-16 20:03:39
合計ジャッジ時間 6,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
40,232 KB
testcase_01 AC 82 ms
40,328 KB
testcase_02 AC 82 ms
40,748 KB
testcase_03 AC 80 ms
40,524 KB
testcase_04 AC 82 ms
40,332 KB
testcase_05 AC 82 ms
42,640 KB
testcase_06 AC 85 ms
42,272 KB
testcase_07 AC 81 ms
40,264 KB
testcase_08 AC 82 ms
40,484 KB
testcase_09 AC 81 ms
42,652 KB
testcase_10 AC 82 ms
42,520 KB
testcase_11 AC 81 ms
42,400 KB
testcase_12 AC 82 ms
40,076 KB
testcase_13 AC 82 ms
40,328 KB
testcase_14 AC 82 ms
40,616 KB
testcase_15 AC 81 ms
38,416 KB
testcase_16 AC 85 ms
39,832 KB
testcase_17 AC 80 ms
38,412 KB
testcase_18 AC 81 ms
39,848 KB
testcase_19 AC 80 ms
40,488 KB
testcase_20 AC 81 ms
40,108 KB
testcase_21 AC 88 ms
39,724 KB
testcase_22 AC 82 ms
40,340 KB
testcase_23 AC 80 ms
39,980 KB
testcase_24 AC 83 ms
42,648 KB
testcase_25 AC 81 ms
40,072 KB
testcase_26 AC 82 ms
40,100 KB
testcase_27 AC 80 ms
40,348 KB
testcase_28 AC 80 ms
40,236 KB
testcase_29 AC 86 ms
40,052 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 System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

class Program
{
    public void Proc()
    {
        long ans = this.GetAns(1, 1000000000);
        Console.WriteLine("! " + ans);


    }

    private long GetAns(long min, long max)
    {
        long mid = (min + max) / 2;
        Console.WriteLine("? " + mid);
        bool isBigger = Console.ReadLine().Equals("1");

        if (isBigger && max - mid <= 1)
        {
            Console.WriteLine("? " + max);
            isBigger = Console.ReadLine().Equals("1");
            if (isBigger)
            {
                return max;
            }
            else
            {
                return mid;
            }
        }
        if (isBigger)
        {
            return this.GetAns(mid, max);
        }
        else
        {
            return this.GetAns(min, mid);
        }
    }




    static void Main(string[] args)
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0