結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | phage64 |
提出日時 | 2017-11-18 18:46:52 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 132 ms / 2,000 ms |
コード長 | 2,033 bytes |
コンパイル時間 | 854 ms |
コンパイル使用メモリ | 115,672 KB |
実行使用メモリ | 42,632 KB |
平均クエリ数 | 46.60 |
最終ジャッジ日時 | 2024-07-16 14:51:01 |
合計ジャッジ時間 | 4,624 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
40,160 KB |
testcase_01 | AC | 126 ms
40,992 KB |
testcase_02 | AC | 126 ms
40,936 KB |
testcase_03 | AC | 128 ms
40,416 KB |
testcase_04 | AC | 127 ms
40,976 KB |
testcase_05 | AC | 122 ms
42,376 KB |
testcase_06 | AC | 121 ms
39,052 KB |
testcase_07 | AC | 124 ms
40,984 KB |
testcase_08 | AC | 127 ms
40,288 KB |
testcase_09 | AC | 130 ms
40,576 KB |
testcase_10 | AC | 125 ms
38,804 KB |
testcase_11 | AC | 125 ms
40,448 KB |
testcase_12 | AC | 125 ms
40,540 KB |
testcase_13 | AC | 122 ms
42,616 KB |
testcase_14 | AC | 128 ms
42,324 KB |
testcase_15 | AC | 127 ms
40,280 KB |
testcase_16 | AC | 132 ms
42,632 KB |
testcase_17 | AC | 125 ms
40,540 KB |
testcase_18 | AC | 123 ms
40,720 KB |
testcase_19 | AC | 127 ms
42,580 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.IO; class Program { static void Solve() { int[] pos = { 0, 0, 0 }; for (var i = 0; i < 3; i++) { int min = -100, max = 101; while (min + 1 < max) { int m = (max - min) / 2 + min; pos[i] = m - 1; int n1 = Ask(pos); pos[i] = m; int n2 = Ask(pos); if (n1 < n2) max = m; else min = m; } pos[i] = min; } Ans(pos); } static int Ask(int[] pos) { pr.WriteLine($"? {pos[0]} {pos[1]} {pos[2]}"); return sc.Int(); } static void Ans(int[] pos) { pr.WriteLine($"! {pos[0]} {pos[1]} {pos[2]}"); } static void Main(string[] args) { pr.AutoFlush = true; Solve(); pr.Flush(); } static Scanner sc = new Scanner(); static Printer pr = new Printer(); static readonly int MOD = 1000000007; } #region IO class Scanner { private int _i = 0; private string[] line = new string[0]; private T[] Enumerate<T>(int n, Func<T> f) { T[] ret = new T[n]; for (int i = 0; i < n; i++) ret[i] = f(); return ret; } public string String() { if (line.Length <= _i) { line = Console.ReadLine().Split(' '); _i = 0; } return line[_i++]; } public int Int() => int.Parse(String()); public long Long() => long.Parse(String()); public double Double() => double.Parse(String()); public int[] Int(int n) => Enumerate(n, Int); public long[] Long(int n) => Enumerate(n, Long); public double[] Double(int n) => Enumerate(n, Double); public string[] String(int n) => Enumerate(n, String); } class Printer : StreamWriter { public Printer() : base(Console.OpenStandardOutput()) { AutoFlush = false; } } #endregion