結果

問題 No.57 ミリオンダイス
ユーザー butchi_ybutchi_y
提出日時 2014-11-04 23:33:09
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 204 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 5,456 KB
実行使用メモリ 42,488 KB
最終ジャッジ日時 2023-08-03 01:26:22
合計ジャッジ時間 1,819 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
42,152 KB
testcase_01 AC 77 ms
42,412 KB
testcase_02 AC 76 ms
42,200 KB
testcase_03 AC 76 ms
42,188 KB
testcase_04 AC 75 ms
42,156 KB
testcase_05 AC 77 ms
42,224 KB
testcase_06 AC 79 ms
42,488 KB
testcase_07 AC 74 ms
42,224 KB
testcase_08 AC 76 ms
42,228 KB
testcase_09 AC 75 ms
42,104 KB
testcase_10 AC 76 ms
42,272 KB
testcase_11 AC 78 ms
42,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    var n = +input;

    var tmp = n * 7 / 2;
    var ans = tmp;

    console.log(ans);
}

// Don't edit this line!
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0