結果

問題 No.98 円を描こう
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-01 00:14:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 460 bytes
コンパイル時間 3,537 ms
コンパイル使用メモリ 73,736 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-06-02 07:50:05
合計ジャッジ時間 4,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,008 KB
testcase_01 AC 137 ms
41,080 KB
testcase_02 AC 126 ms
41,404 KB
testcase_03 AC 129 ms
41,488 KB
testcase_04 AC 121 ms
40,920 KB
testcase_05 AC 132 ms
41,380 KB
testcase_06 AC 132 ms
41,400 KB
testcase_07 AC 129 ms
41,484 KB
testcase_08 AC 131 ms
41,708 KB
testcase_09 AC 131 ms
41,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		double x = sc.nextDouble();
		double y = sc.nextDouble();
		double dist = GetDistance(0,0,x,y);
		int ans = (int)(dist*2+1);
		out.println(ans);
	}
	static double GetDistance (double x1, double y1, double x2, double y2) {
		double d = Math.sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1));
		return d;
	}

}
0