結果

問題 No.57 ミリオンダイス
ユーザー jp_stejp_ste
提出日時 2020-05-12 23:18:47
言語 JavaScript
(node v20.8.0)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 155 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 5,268 KB
実行使用メモリ 42,652 KB
最終ジャッジ日時 2023-08-03 04:02:25
合計ジャッジ時間 2,029 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
42,364 KB
testcase_01 AC 77 ms
42,652 KB
testcase_02 AC 78 ms
42,216 KB
testcase_03 AC 80 ms
42,368 KB
testcase_04 AC 79 ms
42,448 KB
testcase_05 AC 77 ms
42,376 KB
testcase_06 AC 79 ms
42,500 KB
testcase_07 AC 82 ms
42,384 KB
testcase_08 AC 76 ms
42,312 KB
testcase_09 AC 78 ms
42,220 KB
testcase_10 AC 78 ms
42,212 KB
testcase_11 AC 78 ms
42,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(input) {
  let N = Number(input.shift());
  console.log(N*3.5);
}

main(require("fs").readFileSync("/dev/stdin", "utf8").trim().split("\n"));
0