結果

問題 No.508 超ゆとり教育
ユーザー 37zigen37zigen
提出日時 2018-04-21 05:44:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 42,060 KB
最終ジャッジ日時 2024-06-27 05:22:13
合計ジャッジ時間 4,206 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
42,004 KB
testcase_01 AC 132 ms
40,868 KB
testcase_02 AC 144 ms
41,764 KB
testcase_03 AC 142 ms
41,584 KB
testcase_04 AC 147 ms
41,380 KB
testcase_05 AC 142 ms
42,060 KB
testcase_06 AC 140 ms
41,448 KB
testcase_07 AC 142 ms
41,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}

	public void run() {
		Scanner sc = new Scanner(System.in);
		double n = sc.nextDouble();
		n = Math.sqrt(n / Math.PI);
		long ans = (long) n;
		while(ans<1)++ans;
		System.out.println(ans);
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0