結果

問題 No.508 超ゆとり教育
ユーザー shinwisteriashinwisteria
提出日時 2017-05-04 22:28:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 3,483 ms
コンパイル使用メモリ 73,876 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-09-14 07:17:14
合計ジャッジ時間 5,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,156 KB
testcase_01 WA -
testcase_02 AC 147 ms
54,224 KB
testcase_03 AC 150 ms
54,048 KB
testcase_04 AC 144 ms
53,856 KB
testcase_05 AC 130 ms
53,396 KB
testcase_06 AC 143 ms
54,012 KB
testcase_07 AC 144 ms
53,928 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);
		System.out.println(r);

	}

}
0