結果

問題 No.1903 Day1
ユーザー testtest
提出日時 2022-11-23 06:23:11
言語 JavaScript
(node v23.5.0)
結果
AC  
実行時間 203 ms / 1,000 ms
コード長 294 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 44,652 KB
最終ジャッジ日時 2024-09-24 11:52:39
合計ジャッジ時間 2,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
41,076 KB
testcase_01 AC 64 ms
38,912 KB
testcase_02 AC 203 ms
42,496 KB
testcase_03 AC 64 ms
39,040 KB
testcase_04 AC 63 ms
39,040 KB
testcase_05 AC 62 ms
38,912 KB
testcase_06 AC 63 ms
38,912 KB
testcase_07 AC 63 ms
38,912 KB
testcase_08 AC 63 ms
38,912 KB
testcase_09 AC 69 ms
42,496 KB
testcase_10 AC 68 ms
44,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function ans(n) {
    for (let i = 1; i <= 14000; i++) {
        if (i % 7 == 0) n += 6;
        n--;
        if (n == 0) return i;
    }
}
function Main(input) {
    const n = parseInt(input.replace("\n", ""));
    console.log(ans(n));
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0