結果

問題 No.253 ロウソクの長さ
ユーザー mbanmban
提出日時 2017-04-28 10:13:20
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,218 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 112,216 KB
実行使用メモリ 34,720 KB
平均クエリ数 23.89
最終ジャッジ日時 2024-07-17 00:54:56
合計ジャッジ時間 6,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
34,400 KB
testcase_01 AC 46 ms
33,880 KB
testcase_02 AC 46 ms
33,880 KB
testcase_03 AC 44 ms
33,752 KB
testcase_04 AC 45 ms
33,880 KB
testcase_05 AC 45 ms
33,752 KB
testcase_06 AC 48 ms
34,264 KB
testcase_07 AC 46 ms
34,008 KB
testcase_08 AC 45 ms
33,880 KB
testcase_09 AC 46 ms
33,752 KB
testcase_10 AC 54 ms
34,264 KB
testcase_11 AC 48 ms
34,136 KB
testcase_12 AC 47 ms
34,136 KB
testcase_13 AC 48 ms
34,432 KB
testcase_14 AC 48 ms
34,392 KB
testcase_15 AC 47 ms
34,720 KB
testcase_16 AC 46 ms
34,136 KB
testcase_17 AC 47 ms
34,008 KB
testcase_18 AC 49 ms
33,880 KB
testcase_19 AC 46 ms
33,880 KB
testcase_20 AC 47 ms
33,880 KB
testcase_21 AC 53 ms
34,008 KB
testcase_22 AC 53 ms
33,872 KB
testcase_23 AC 56 ms
33,752 KB
testcase_24 AC 54 ms
34,264 KB
testcase_25 AC 58 ms
34,008 KB
testcase_26 AC 55 ms
34,136 KB
testcase_27 AC 55 ms
33,880 KB
testcase_28 AC 54 ms
34,520 KB
testcase_29 AC 55 ms
34,264 KB
testcase_30 AC 56 ms
34,392 KB
testcase_31 AC 50 ms
33,496 KB
testcase_32 AC 46 ms
33,880 KB
testcase_33 AC 47 ms
34,392 KB
testcase_34 AC 46 ms
33,624 KB
testcase_35 AC 47 ms
34,624 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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

public class Program
{
    static public void Main(string[] args)
    {
        Console.WriteLine("? 64");
        string s = Console.ReadLine();
        int min = -1, max = -1;
        switch (s)
        {
            case "-1":
                max = 64;
                min = 10;
                break;
            case "1":
                max = (int)1e9 + 1;
                min = 65;
                break;
            case "0":
                Console.WriteLine("! 64");
                return;
        }

        for (int i = 1; ; i++)
        {
            int mid = (min + max) / 2;
            Console.WriteLine($"? {mid - i}");
            s = Console.ReadLine();
            switch (s)
            {
                case "-1":
                    max = mid - 1;

                    break;
                case "1":

                    min = mid + 1;
                    break;
                case "0":
                    Console.WriteLine($"! {mid}");
                    return;
            }
        }
    }
}

0