結果

問題 No.253 ロウソクの長さ
ユーザー NoNo
提出日時 2017-05-28 11:29:11
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,691 bytes
コンパイル時間 1,003 ms
コンパイル使用メモリ 111,080 KB
実行使用メモリ 42,540 KB
平均クエリ数 28.92
最終ジャッジ日時 2024-07-17 01:13:38
合計ジャッジ時間 8,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
40,080 KB
testcase_01 AC 56 ms
42,280 KB
testcase_02 AC 53 ms
40,248 KB
testcase_03 AC 51 ms
38,412 KB
testcase_04 AC 48 ms
39,732 KB
testcase_05 AC 50 ms
41,756 KB
testcase_06 AC 60 ms
42,288 KB
testcase_07 AC 51 ms
41,908 KB
testcase_08 AC 54 ms
40,456 KB
testcase_09 AC 57 ms
40,196 KB
testcase_10 AC 59 ms
42,288 KB
testcase_11 AC 59 ms
40,244 KB
testcase_12 AC 57 ms
40,112 KB
testcase_13 AC 57 ms
40,500 KB
testcase_14 AC 55 ms
40,072 KB
testcase_15 AC 59 ms
41,880 KB
testcase_16 AC 58 ms
42,520 KB
testcase_17 AC 55 ms
39,952 KB
testcase_18 AC 54 ms
42,540 KB
testcase_19 AC 47 ms
40,116 KB
testcase_20 AC 49 ms
40,248 KB
testcase_21 AC 49 ms
40,200 KB
testcase_22 AC 49 ms
40,372 KB
testcase_23 AC 49 ms
42,296 KB
testcase_24 AC 51 ms
40,108 KB
testcase_25 AC 48 ms
42,036 KB
testcase_26 AC 48 ms
39,732 KB
testcase_27 AC 49 ms
39,860 KB
testcase_28 AC 50 ms
42,192 KB
testcase_29 AC 49 ms
39,628 KB
testcase_30 AC 50 ms
40,504 KB
testcase_31 AC 49 ms
40,500 KB
testcase_32 AC 48 ms
40,252 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
            while (ma > mi)
            {
                y = (ma + mi) / 2;
                Console.WriteLine("? {0}", y);
                string a = Console.ReadLine();
                if (a == "0")
                {
                    Console.WriteLine("! {0}", y + c);
                    break;
                }
                else if (a == "-1")
                {
                    ma = y - 1;
                    mi -= 1;
                    c++;
                }
                else
                {
                    ma -= 1;
                    mi = y - 1;
                    c++;
                }
            }
        }
    }
}
0