結果

問題 No.1429 Simple Dowsing
ユーザー ks2mks2m
提出日時 2021-03-14 14:42:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 2,685 ms
コンパイル使用メモリ 76,764 KB
実行使用メモリ 71,476 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-17 10:52:15
合計ジャッジ時間 6,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
71,192 KB
testcase_01 AC 178 ms
71,308 KB
testcase_02 AC 169 ms
70,960 KB
testcase_03 AC 168 ms
71,356 KB
testcase_04 AC 170 ms
71,060 KB
testcase_05 AC 168 ms
71,184 KB
testcase_06 AC 168 ms
71,112 KB
testcase_07 AC 169 ms
71,140 KB
testcase_08 AC 176 ms
71,412 KB
testcase_09 AC 167 ms
70,868 KB
testcase_10 AC 177 ms
71,476 KB
testcase_11 AC 164 ms
71,400 KB
testcase_12 AC 177 ms
71,216 KB
testcase_13 AC 180 ms
71,032 KB
testcase_14 AC 175 ms
70,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		System.out.println("? 0 0");
		int d1 = sc.nextInt();
		System.out.println("? 0 100");
		int d2 = sc.nextInt();
		sc.close();

		for (int i = 0; i <= 100; i++) {
			for (int j = 0; j <= 100; j++) {
				if (i * i + j * j == d1
						&& i * i + (100 - j) * (100 - j) == d2) {
					System.out.println("! " + i + " " + j);
					return;
				}
			}
		}
	}
}
0