結果
| 問題 |
No.514 宝探し3
|
| コンテスト | |
| ユーザー |
jp_ste
|
| 提出日時 | 2017-05-16 20:47:25 |
| 言語 | Java (openjdk 23) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,013 bytes |
| コンパイル時間 | 2,668 ms |
| コンパイル使用メモリ | 80,096 KB |
| 実行使用メモリ | 54,560 KB |
| 平均クエリ数 | 0.25 |
| 最終ジャッジ日時 | 2024-07-16 13:44:17 |
| 合計ジャッジ時間 | 6,702 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 TLE * 1 -- * 10 |
ソースコード
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);
long d1 = scan.nextLong();
possiblePoints(d1);
System.out.println(d1 + " " + 0);
long d2 = scan.nextLong();
serchPoint(d1, d2);
}
static void possiblePoints(long d) {
for(long x=0; x<=d; x++) {
long y = d-x;
list.add(new Point(x,y));
}
}
static void serchPoint(long d1, long d2) {
Point p1 = new Point(d1, 0);
for(Point p2: list) {
long 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 {
long x,y;
Point(long x, long y) {
this.x = x;
this.y = y;
}
}
jp_ste