結果

問題 No.508 超ゆとり教育
ユーザー Amanita2016Amanita2016
提出日時 2017-06-27 22:34:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 53,996 KB
最終ジャッジ日時 2024-10-04 13:41:15
合計ジャッジ時間 3,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,980 KB
testcase_01 AC 111 ms
53,816 KB
testcase_02 AC 94 ms
52,568 KB
testcase_03 AC 117 ms
53,824 KB
testcase_04 AC 116 ms
53,920 KB
testcase_05 AC 112 ms
52,852 KB
testcase_06 AC 108 ms
53,996 KB
testcase_07 AC 112 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {	
		long radrad =  new Scanner(System.in).nextLong()/3;
		long radius = 1;
		for(long i = 1 ; i*i < radrad ;i++){
			radius = radrad / i; 
		}
		System.out.println(radius);
	}

}
0