結果

問題 No.508 超ゆとり教育
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-04-28 22:46:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-09-13 18:13:03
合計ジャッジ時間 3,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,872 KB
testcase_01 AC 126 ms
53,804 KB
testcase_02 AC 128 ms
53,984 KB
testcase_03 AC 125 ms
54,292 KB
testcase_04 AC 125 ms
53,800 KB
testcase_05 AC 128 ms
54,060 KB
testcase_06 AC 128 ms
53,868 KB
testcase_07 AC 129 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();
        long ans = (long)(Math.sqrt(N/3));
        if(ans==0)ans=1;
        System.out.println(ans);
    }
}
0