結果
問題 | No.246 質問と回答 |
ユーザー | nokonoko |
提出日時 | 2015-07-18 07:10:50 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,360 bytes |
コンパイル時間 | 1,201 ms |
コンパイル使用メモリ | 115,072 KB |
実行使用メモリ | 45,576 KB |
平均クエリ数 | 64.77 |
最終ジャッジ日時 | 2024-07-16 07:10:48 |
合計ジャッジ時間 | 6,407 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 90 ms
41,368 KB |
testcase_03 | AC | 83 ms
41,376 KB |
testcase_04 | AC | 86 ms
42,008 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 89 ms
41,484 KB |
testcase_08 | AC | 83 ms
41,092 KB |
testcase_09 | AC | 85 ms
43,916 KB |
testcase_10 | WA | - |
testcase_11 | AC | 86 ms
41,536 KB |
testcase_12 | AC | 84 ms
43,284 KB |
testcase_13 | AC | 88 ms
43,544 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 86 ms
41,236 KB |
testcase_17 | AC | 87 ms
41,480 KB |
testcase_18 | AC | 87 ms
41,992 KB |
testcase_19 | AC | 87 ms
41,624 KB |
testcase_20 | AC | 86 ms
39,564 KB |
testcase_21 | AC | 86 ms
43,400 KB |
testcase_22 | AC | 88 ms
41,748 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 85 ms
43,148 KB |
testcase_26 | WA | - |
testcase_27 | AC | 84 ms
41,500 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main() { long answer = 500000000; long nowRange = answer / 2; long qCount = 100; bool flag = false; while (nowRange > 0) { LIB.IO.W("? " + answer.ToString()); LIB.IO.WFLUSH(); if (LIB.IO.R<int>() == 1) { answer += nowRange; flag = true; } else { answer -= nowRange; flag = false; } nowRange >>= 1; qCount--; } if (flag == true) { answer += qCount / 2; } else { answer -= qCount / 2; } for (int i = 0; i < qCount / 2; i++) { LIB.IO.W("? " + answer.ToString()); LIB.IO.WFLUSH(); if (LIB.IO.R<int>() == 1) { answer++; if (flag == true) { break; } } else { answer--; if (flag == false) { break; } } } LIB.IO.W("! " + answer.ToString()); LIB.IO.WFLUSH(); } } namespace LIB { public class IO { private const int WMAX = 1000; private static string WSTRING = ""; public static T R<T>() { return (T)(Convert.ChangeType(R(), typeof(T))); } public static T[] R<T>(char splitter = ' ') { return R().Split(splitter).Select(v => UTILITY.PARSE<T>(v)).ToArray(); } public static T[] R<T>(int length) { T[] ret = new T[length]; for (int i = 0; i < length; i++) { ret[i] = R<T>(); } return ret; } public static T[][] R<T>(int length, char splitter = ' ') { T[][] ret = new T[length][]; for (int i = 0; i < length; i++) { ret[i] = R<T>(splitter); } return ret; } private static string R() { return Console.ReadLine(); } public static void W(object value, bool addLineFeed = true) { WSTRING += UTILITY.PARSE<string>(value); if (addLineFeed == true) { WSTRING += "\n"; } if (WSTRING.Count() >= WMAX) { WFLUSH(); } } public static void WFLUSH() { Console.Write(WSTRING); WSTRING = ""; } } public class UTILITY { public static T PARSE<T>(object value) { return (T)(Convert.ChangeType(value, typeof(T))); } } public class MEMO<Key, Result> { private Dictionary<Key, Result> results; public MEMO() { results = new Dictionary<Key, Result>(); } public Result EXEC(Key key, Func<Key, Result> func) { Result ret = default(Result); if (results.ContainsKey(key)) { ret = results[key]; } else { ret = func(key); results.Add(key, ret); } return ret; } } }