結果

問題 No.98 円を描こう
ユーザー fal_rndfal_rnd
提出日時 2017-08-25 23:49:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 78,428 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-10-15 16:16:29
合計ジャッジ時間 4,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,088 KB
testcase_01 AC 128 ms
41,392 KB
testcase_02 AC 128 ms
41,280 KB
testcase_03 AC 131 ms
41,128 KB
testcase_04 AC 130 ms
41,212 KB
testcase_05 AC 130 ms
41,344 KB
testcase_06 AC 129 ms
41,000 KB
testcase_07 AC 131 ms
41,272 KB
testcase_08 AC 131 ms
41,160 KB
testcase_09 AC 132 ms
41,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}

	public static void main(String[]$){
		System.out.println((int)(Math.hypot(getInt(),getInt())*2+1));
	}
}
0