結果

問題 No.246 質問と回答
ユーザー nokonokonokonoko
提出日時 2015-07-18 14:49:37
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,322 bytes
コンパイル時間 2,694 ms
コンパイル使用メモリ 108,492 KB
実行使用メモリ 41,888 KB
平均クエリ数 31.70
最終ジャッジ日時 2023-09-23 07:21:10
合計ジャッジ時間 7,636 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
39,360 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 100 ms
39,668 KB
testcase_06 WA -
testcase_07 AC 101 ms
39,500 KB
testcase_08 AC 101 ms
37,632 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 102 ms
39,344 KB
testcase_12 AC 102 ms
39,584 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 101 ms
37,720 KB
testcase_16 WA -
testcase_17 AC 100 ms
37,380 KB
testcase_18 AC 100 ms
39,340 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 104 ms
39,940 KB
testcase_23 AC 103 ms
39,592 KB
testcase_24 WA -
testcase_25 AC 106 ms
39,400 KB
testcase_26 AC 104 ms
35,908 KB
testcase_27 AC 104 ms
37,300 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

class Program
{
    static void Main()
    {
        long answer = 500000000;
        long nowRange = answer / 2;
        long qCount = 100;
        while (nowRange > 0)
        {
            LIB.IO.W("? " + answer.ToString());
            LIB.IO.WFLUSH();
            if (LIB.IO.R<int>() == 1)
            {
                answer += nowRange;
            }
            else
            {
                answer -= nowRange;
            }
            nowRange >>= 1;
            qCount--;
        }
        int direction = 0;
        bool first = false;
        for (int i = 0; i < qCount / 2; i++)
        {
            LIB.IO.W("? " + answer.ToString());
            LIB.IO.WFLUSH();
            int nowDirection = LIB.IO.R<int>();
            if (first == false)
            {
                first = true;
                direction = nowDirection;
            }
            if (nowDirection == 1)
            {
                answer++;
            }
            else
            {
                answer--;
            }
            if (nowDirection != direction) { break; }
        }
        LIB.IO.W("! " + answer.ToString());
        LIB.IO.WFLUSH();
    }
}

namespace LIB
{
    public class IO
    {
        private const int WMAX = 1000;
        private static string WSTRING = "";
        public static T R<T>()
        {
            return (T)(Convert.ChangeType(R(), typeof(T)));
        }
        public static T[] R<T>(char splitter = ' ')
        {
            return R().Split(splitter).Select(v => UTILITY.PARSE<T>(v)).ToArray();
        }
        public static T[] R<T>(int length)
        {

            T[] ret = new T[length];
            for (int i = 0; i < length; i++)
            {
                ret[i] = R<T>();
            }
            return ret;
        }
        public static T[][] R<T>(int length, char splitter = ' ')
        {
            T[][] ret = new T[length][];
            for (int i = 0; i < length; i++)
            {
                ret[i] = R<T>(splitter);
            }
            return ret;
        }
        private static string R()
        {
            return Console.ReadLine();
        }
        public static void W(object value, bool addLineFeed = true)
        {
            WSTRING += UTILITY.PARSE<string>(value);
            if (addLineFeed == true) { WSTRING += "\n"; }
            if (WSTRING.Count() >= WMAX) { WFLUSH(); }
        }
        public static void WFLUSH()
        {
            Console.Write(WSTRING);
            WSTRING = "";
        }
    }
    public class UTILITY
    {
        public static T PARSE<T>(object value)
        {
            return (T)(Convert.ChangeType(value, typeof(T)));
        }
    }
    public class MEMO<Key, Result>
    {
        private Dictionary<Key, Result> results;
        public MEMO()
        {
            results = new Dictionary<Key, Result>();
        }
        public Result EXEC(Key key, Func<Key, Result> func)
        {
            Result ret = default(Result);
            if (results.ContainsKey(key))
            {
                ret = results[key];
            }
            else
            {
                ret = func(key);
                results.Add(key, ret);
            }
            return ret;
        }
    }
}
0