結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | tnakao0123 |
提出日時 | 2017-11-13 13:29:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,359 bytes |
コンパイル時間 | 566 ms |
コンパイル使用メモリ | 83,556 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 79.50 |
最終ジャッジ日時 | 2024-07-16 14:50:27 |
合計ジャッジ時間 | 3,993 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 109 ms
25,220 KB |
testcase_01 | AC | 105 ms
25,220 KB |
testcase_02 | AC | 108 ms
25,220 KB |
testcase_03 | AC | 103 ms
25,220 KB |
testcase_04 | AC | 103 ms
25,220 KB |
testcase_05 | AC | 104 ms
25,220 KB |
testcase_06 | WA | - |
testcase_07 | AC | 103 ms
24,964 KB |
testcase_08 | AC | 106 ms
24,836 KB |
testcase_09 | AC | 102 ms
25,232 KB |
testcase_10 | AC | 105 ms
24,848 KB |
testcase_11 | AC | 107 ms
24,592 KB |
testcase_12 | AC | 108 ms
25,232 KB |
testcase_13 | AC | 108 ms
25,232 KB |
testcase_14 | AC | 104 ms
25,604 KB |
testcase_15 | AC | 102 ms
25,232 KB |
testcase_16 | AC | 104 ms
25,088 KB |
testcase_17 | AC | 105 ms
25,232 KB |
testcase_18 | AC | 104 ms
25,232 KB |
testcase_19 | AC | 104 ms
24,964 KB |
コンパイルメッセージ
main.cpp: In function ‘int request(int, int)’: main.cpp:46:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 46 | scanf("%d", &d); | ~~~~~^~~~~~~~~~
ソースコード
/* -*- coding: utf-8 -*- * * 594.cc: No.594 壊れた宝物発見機 - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MIN_P = -100; const int MAX_P = 100; const int INF = 1 << 30; /* typedef */ /* global variables */ /* subroutines */ int request(int k, int pk) { putchar('?'); for (int i = 0; i < 3; i++) printf(" %d", (i == k) ? pk : 0); putchar('\n'); fflush(stdout); int d; scanf("%d", &d); return d; } /* main */ int main() { int ps[3]; for (int i = 0; i < 3; i++) { int p0 = MIN_P, p1 = MAX_P; while (p0 + 2 < p1) { int p2 = (p0 * 2 + p1) / 3; int p3 = (p0 + p1 * 2) / 3; int d2 = request(i, p2); int d3 = request(i, p3); if (d2 <= d3) p1 = p3; else p0 = p2; } int mind = INF, minp = 0; for (int p = p0; p <= p1; p++) { int d = request(i, p); if (mind > d) mind = d, minp = p; } ps[i] = minp; } putchar('!'); for (int i = 0; i < 3; i++) printf(" %d", ps[i]); putchar('\n'); fflush(stdout); return 0; }