結果
問題 | No.253 ロウソクの長さ |
ユーザー | mban |
提出日時 | 2017-02-18 20:22:56 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,751 bytes |
コンパイル時間 | 991 ms |
コンパイル使用メモリ | 114,412 KB |
実行使用メモリ | 44,652 KB |
平均クエリ数 | 40.75 |
最終ジャッジ日時 | 2024-07-16 12:22:53 |
合計ジャッジ時間 | 6,442 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
40,512 KB |
testcase_01 | AC | 48 ms
41,048 KB |
testcase_02 | AC | 48 ms
40,792 KB |
testcase_03 | AC | 48 ms
42,496 KB |
testcase_04 | AC | 48 ms
40,436 KB |
testcase_05 | AC | 48 ms
39,740 KB |
testcase_06 | AC | 49 ms
40,456 KB |
testcase_07 | WA | - |
testcase_08 | AC | 49 ms
42,612 KB |
testcase_09 | AC | 49 ms
40,888 KB |
testcase_10 | AC | 49 ms
40,632 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 48 ms
40,892 KB |
testcase_15 | AC | 48 ms
40,248 KB |
testcase_16 | AC | 47 ms
40,128 KB |
testcase_17 | AC | 49 ms
40,428 KB |
testcase_18 | WA | - |
testcase_19 | AC | 48 ms
43,124 KB |
testcase_20 | AC | 48 ms
38,412 KB |
testcase_21 | AC | 48 ms
40,376 KB |
testcase_22 | AC | 47 ms
40,816 KB |
testcase_23 | AC | 47 ms
38,448 KB |
testcase_24 | AC | 47 ms
40,764 KB |
testcase_25 | AC | 47 ms
40,512 KB |
testcase_26 | WA | - |
testcase_27 | AC | 48 ms
42,864 KB |
testcase_28 | AC | 49 ms
40,384 KB |
testcase_29 | AC | 48 ms
43,120 KB |
testcase_30 | WA | - |
testcase_31 | AC | 50 ms
40,124 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 48 ms
38,716 KB |
testcase_35 | 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; 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("? 128"); int plus = -1; switch (Cin.Next()) { case "0": Console.WriteLine("! 128"); 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; } } }