結果

問題 No.253 ロウソクの長さ
ユーザー mbanmban
提出日時 2017-02-18 20:17:11
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,749 bytes
コンパイル時間 2,698 ms
コンパイル使用メモリ 109,192 KB
実行使用メモリ 40,948 KB
平均クエリ数 48.47
最終ジャッジ日時 2023-09-23 12:45:20
合計ジャッジ時間 9,750 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
36,484 KB
testcase_01 AC 79 ms
36,612 KB
testcase_02 WA -
testcase_03 AC 79 ms
37,028 KB
testcase_04 AC 80 ms
36,756 KB
testcase_05 AC 79 ms
36,900 KB
testcase_06 AC 81 ms
38,408 KB
testcase_07 WA -
testcase_08 AC 81 ms
38,520 KB
testcase_09 AC 83 ms
36,924 KB
testcase_10 AC 82 ms
39,064 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 80 ms
36,752 KB
testcase_15 WA -
testcase_16 AC 80 ms
38,756 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 81 ms
38,736 KB
testcase_20 AC 81 ms
36,328 KB
testcase_21 AC 81 ms
39,060 KB
testcase_22 AC 80 ms
38,500 KB
testcase_23 AC 80 ms
36,928 KB
testcase_24 AC 80 ms
36,780 KB
testcase_25 AC 82 ms
36,408 KB
testcase_26 WA -
testcase_27 AC 83 ms
36,504 KB
testcase_28 AC 81 ms
37,040 KB
testcase_29 AC 79 ms
36,680 KB
testcase_30 WA -
testcase_31 AC 78 ms
36,920 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 78 ms
38,544 KB
testcase_35 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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

public class Scanner
{
    private StreamReader Sr;

    private string[] S;
    private int Index;
    private const char Separator = ' ';

    public Scanner(Stream source)
    {
        Index = 0;
        S = new string[0];
        Sr = new StreamReader(source);
    }

    private string[] Line()
    {
        return Sr.ReadLine().Split(Separator);
    }

    public string Next()
    {
        string result;
        if (Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
    public decimal NextDecimal()
    {
        return decimal.Parse(Next());
    }
    public string[] StringArray(int index = 0)
    {
        Next();
        Index = S.Length;
        return S.Skip(index).ToArray();
    }
    public int[] IntArray(int index = 0)
    {
        return StringArray(index).Select(int.Parse).ToArray();
    }
    public long[] LongArray(int index = 0)
    {
        return StringArray(index).Select(long.Parse).ToArray();
    }
    public bool EndOfStream
    {
        get { return Sr.EndOfStream; }
    }
}

public class Magatro
{
    private Scanner Cin;

    private void Scan()
    {
        Cin = new Scanner(Console.OpenStandardInput());

    }
    public void Solve()
    {
        Scan();
        Console.WriteLine("? 64");
        int plus = -1;
        switch (Cin.Next())
        {
            case "0":
                Console.WriteLine("! 64");
                return;
            case "1":
                plus = int.MaxValue / 2;
                break;
            case "-1":
                plus = 64;
                break;
        }
        int length = 0;
        for (int i = 0; i < 100; i++)
        {
            Console.WriteLine("? {0}", Math.Max(length + plus-i-1,0));
            string s = Cin.Next();
            switch (s)
            {
                case "0":
                    Console.WriteLine("! {0}", length + plus);
                    return;
                    
                case "1":
                    length += plus;
                    break;
                case "-1":
                    break;
            }
            plus /= 2;
        }
    }
}
0