結果

問題 No.246 質問と回答
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2017-02-04 14:23:58
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 106,032 KB
実行使用メモリ 34,776 KB
平均クエリ数 72.80
最終ジャッジ日時 2024-07-16 12:20:03
合計ジャッジ時間 5,585 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
34,256 KB
testcase_01 AC 67 ms
34,392 KB
testcase_02 WA -
testcase_03 AC 69 ms
34,776 KB
testcase_04 AC 70 ms
34,392 KB
testcase_05 AC 72 ms
34,520 KB
testcase_06 AC 67 ms
33,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 69 ms
34,264 KB
testcase_10 AC 65 ms
34,768 KB
testcase_11 AC 71 ms
34,136 KB
testcase_12 AC 72 ms
34,520 KB
testcase_13 AC 69 ms
34,264 KB
testcase_14 AC 70 ms
34,648 KB
testcase_15 AC 73 ms
34,264 KB
testcase_16 AC 72 ms
34,008 KB
testcase_17 WA -
testcase_18 AC 68 ms
34,392 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 70 ms
34,648 KB
testcase_22 AC 75 ms
34,520 KB
testcase_23 AC 67 ms
34,392 KB
testcase_24 AC 70 ms
34,008 KB
testcase_25 AC 73 ms
34,648 KB
testcase_26 AC 71 ms
34,392 KB
testcase_27 AC 69 ms
34,776 KB
testcase_28 AC 71 ms
34,392 KB
testcase_29 AC 71 ms
34,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Program
{
	public static void Main()
	{
		int max = (int)1e9, min = 1;
		int mid = (max + min) / 2;
		for (int i = 0; max != min && i < 100; i++, mid = (max + min) / 2)
		{
			Console.WriteLine($"? {mid}");
			int result = int.Parse(Console.ReadLine());
			if (result == 1)
			{
				min = mid;
			}
			else
			{
				max = mid - 1;
			}
		}
		Console.WriteLine($"! {mid}");
	}
}
0