結果

問題 No.514 宝探し3
ユーザー jp_stejp_ste
提出日時 2017-05-16 21:12:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,000 bytes
コンパイル時間 2,607 ms
コンパイル使用メモリ 77,392 KB
実行使用メモリ 57,112 KB
平均クエリ数 0.25
最終ジャッジ日時 2023-09-23 14:05:20
合計ジャッジ時間 7,071 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static ArrayList<Point> list = new ArrayList<>();
    
    public static void main(String[] args) throws Exception {
        Scanner scan = new Scanner(System.in);
        System.out.println(0 + " " + 0);
        int d1 = scan.nextInt();
        possiblePoints(d1);
        System.out.println(0 + " " + d1);
        int d2 = scan.nextInt();
        serchPoint(d1, d2);
    }
    
    static void possiblePoints(int d) {
        for(int x=0; x<=d; x++) {
            int y = d-x;
            list.add(new Point(x,y));
        }
    }
    
    static void serchPoint(int d1, int d2) {
        Point p1 = new Point(d1, 0);
        for(Point p2: list) {
            int d = Math.abs(p1.x - p2.x) + Math.abs(p1.y - p2.y);
            if(d == d2) {
                System.out.println(p2.x + " " + p2.y);
                return;
            }
        }
    }
}

class Point {
    int x,y;
    Point(int x, int y) {
        this.x = x;
        this.y = y;
    }
}
0