結果

問題 No.508 超ゆとり教育
ユーザー shinwisteriashinwisteria
提出日時 2017-05-04 22:35:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 3,305 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-09-14 07:17:39
合計ジャッジ時間 5,210 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,248 KB
testcase_01 AC 146 ms
41,504 KB
testcase_02 AC 146 ms
41,248 KB
testcase_03 AC 142 ms
41,248 KB
testcase_04 AC 141 ms
41,528 KB
testcase_05 AC 141 ms
41,512 KB
testcase_06 AC 140 ms
41,508 KB
testcase_07 AC 142 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Choyutori {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		double n = s.nextDouble();
		s.close();
		int r = (int)Math.sqrt(n/3)+1;
		System.out.println(r);
	}
}
0