結果

問題 No.98 円を描こう
ユーザー nCk_cvnCk_cv
提出日時 2016-01-29 14:12:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 73,972 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-09-21 17:51:31
合計ジャッジ時間 3,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,032 KB
testcase_01 AC 121 ms
41,092 KB
testcase_02 AC 117 ms
41,500 KB
testcase_03 AC 110 ms
40,924 KB
testcase_04 AC 102 ms
39,852 KB
testcase_05 AC 115 ms
41,340 KB
testcase_06 AC 106 ms
40,360 KB
testcase_07 AC 99 ms
40,108 KB
testcase_08 AC 119 ms
40,936 KB
testcase_09 AC 123 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int xp = sc.nextInt();
		int yp = sc.nextInt();
		int d = xp * xp + yp * yp;
		System.out.println((int)(Math.sqrt(d)*2)+1);
	}
}
0