結果

問題 No.253 ロウソクの長さ
ユーザー NoNo
提出日時 2017-05-28 13:22:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 2,071 bytes
コンパイル時間 973 ms
コンパイル使用メモリ 112,908 KB
実行使用メモリ 42,668 KB
平均クエリ数 31.08
最終ジャッジ日時 2024-07-17 01:14:03
合計ジャッジ時間 5,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
38,416 KB
testcase_01 AC 50 ms
42,668 KB
testcase_02 AC 50 ms
39,728 KB
testcase_03 AC 48 ms
42,024 KB
testcase_04 AC 58 ms
40,116 KB
testcase_05 AC 64 ms
40,240 KB
testcase_06 AC 59 ms
42,332 KB
testcase_07 AC 58 ms
40,244 KB
testcase_08 AC 58 ms
40,112 KB
testcase_09 AC 58 ms
42,276 KB
testcase_10 AC 59 ms
40,504 KB
testcase_11 AC 57 ms
40,116 KB
testcase_12 AC 56 ms
40,392 KB
testcase_13 AC 52 ms
42,208 KB
testcase_14 AC 50 ms
40,400 KB
testcase_15 AC 54 ms
40,456 KB
testcase_16 AC 51 ms
39,860 KB
testcase_17 AC 50 ms
41,876 KB
testcase_18 AC 49 ms
42,412 KB
testcase_19 AC 49 ms
40,200 KB
testcase_20 AC 51 ms
40,496 KB
testcase_21 AC 57 ms
40,584 KB
testcase_22 AC 49 ms
41,012 KB
testcase_23 AC 49 ms
40,836 KB
testcase_24 AC 54 ms
40,228 KB
testcase_25 AC 49 ms
39,888 KB
testcase_26 AC 48 ms
39,856 KB
testcase_27 AC 50 ms
42,404 KB
testcase_28 AC 50 ms
40,496 KB
testcase_29 AC 49 ms
40,120 KB
testcase_30 AC 49 ms
40,112 KB
testcase_31 AC 49 ms
42,176 KB
testcase_32 AC 53 ms
40,272 KB
testcase_33 AC 49 ms
40,072 KB
testcase_34 AC 50 ms
39,960 KB
testcase_35 AC 58 ms
40,268 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.Linq;
using System.Text;
namespace Yuki
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("? 100");
            string a = Console.ReadLine();
            if (a == "0")
            {
                Console.WriteLine("! 100");
            }
            else if (a == "-1")
            {
                aa();
            }
            else
            {
                bb();
            }
        }

        static void aa()
        {
            int c = 1;
            while (true)
            {
                Console.WriteLine("? 9");
                if (Console.ReadLine() == "0")
                {
                    Console.WriteLine("! {0}", 9 + c);
                    break;
                }
                else
                {
                    c++;
                }
            }
        }

        static void bb()
        {
            int ma = 1000000000 - 1;
            int mi = 100;
            int c = 1;
            int y = -1;
            int r = ma;
            while (ma - mi > 5)
            {
                y = (ma + mi) / 2;
                Console.WriteLine("? {0}", y);
                string a = Console.ReadLine();
                if (a == "0")
                {
                    Console.WriteLine("! {0}", y + c);
                    return;
                }
                else if (a == "-1")
                {
                    ma = y - 1;
                    mi -= 1;
                    c++;
                }
                else
                {
                    ma -= 1;
                    mi = y - 1;
                    c++;
                }
            }

            while (true)
            {
                Console.WriteLine("? {0}", mi);
                if (Console.ReadLine() == "0")
                {
                    Console.WriteLine("! {0}", mi + c);
                    return;
                }
                else
                {
                    c++;
                }
            }
        }
    }
}
0