結果

問題 No.508 超ゆとり教育
ユーザー htensaihtensai
提出日時 2019-12-19 12:37:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 37,076 KB
最終ジャッジ日時 2024-07-07 01:06:57
合計ジャッジ時間 3,260 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,052 KB
testcase_01 WA -
testcase_02 AC 51 ms
36,816 KB
testcase_03 AC 52 ms
36,896 KB
testcase_04 AC 53 ms
36,748 KB
testcase_05 AC 52 ms
37,076 KB
testcase_06 AC 51 ms
37,020 KB
testcase_07 AC 53 ms
36,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        double s = Long.parseLong(br.readLine());
        System.out.println((long)(Math.sqrt(s / 3)));
    }
}
0