結果
問題 | No.513 宝探し2 |
ユーザー | Grenache |
提出日時 | 2017-05-05 22:56:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 167 ms / 2,000 ms |
コード長 | 1,055 bytes |
コンパイル時間 | 3,884 ms |
コンパイル使用メモリ | 78,624 KB |
実行使用メモリ | 70,868 KB |
平均クエリ数 | 2.75 |
最終ジャッジ日時 | 2024-07-17 01:00:23 |
合計ジャッジ時間 | 6,767 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 167 ms
70,276 KB |
testcase_01 | AC | 155 ms
69,644 KB |
testcase_02 | AC | 155 ms
70,136 KB |
testcase_03 | AC | 155 ms
69,772 KB |
testcase_04 | AC | 158 ms
69,808 KB |
testcase_05 | AC | 151 ms
70,080 KB |
testcase_06 | AC | 163 ms
70,364 KB |
testcase_07 | AC | 165 ms
70,064 KB |
testcase_08 | AC | 164 ms
70,868 KB |
testcase_09 | AC | 167 ms
70,820 KB |
testcase_10 | AC | 162 ms
70,360 KB |
testcase_11 | AC | 165 ms
70,376 KB |
ソースコード
import java.io.*; import java.util.*; public class Main_yukicoder513 { private static Scanner sc; private static Printer pr; private static void solve() { query(0, 0); int a0 = sc.nextInt(); if (a0 == 0) { return; } query(100_000, 0); int a1 = sc.nextInt(); if (a1 == 0) { return; } int[] dx = {0, 1, 1, 0, -1, -1, -1, 0, 1}; int[] dy = {0, 0, 1, 1, 1, 0, -1, -1, -1}; int tmpx = (a0 - a1 + 100_000) / 2; int tmpy = (a0 + a1 - 100_000) / 2; for (int i = 0, size = dx.length; i < size; i++) { query(tmpx + dx[i], tmpy + dy[i]); int tmp = sc.nextInt(); if (tmp == 0) { return; } } } private static void query(int x, int y) { pr.printf("%d %d\n", x, y); pr.flush(); return; } // --------------------------------------------------- public static void main(String[] args) { sc = new Scanner(System.in); pr = new Printer(System.out); solve(); pr.close(); sc.close(); } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }