結果

問題 No.508 超ゆとり教育
ユーザー testtest
提出日時 2022-11-24 17:41:23
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 40,944 KB
最終ジャッジ日時 2024-10-01 07:37:13
合計ジャッジ時間 1,380 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
38,656 KB
testcase_01 AC 64 ms
38,912 KB
testcase_02 AC 65 ms
38,784 KB
testcase_03 AC 61 ms
39,168 KB
testcase_04 AC 59 ms
38,784 KB
testcase_05 AC 58 ms
38,656 KB
testcase_06 AC 67 ms
38,784 KB
testcase_07 AC 62 ms
40,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    const n = parseInt(input.replace("\n", ""));
    let ans = Math.floor(Math.sqrt(n / 3)) + 1;
    console.log(ans);
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0