結果

問題 No.311 z in FizzBuzzString
ユーザー ontama_12ontama_12
提出日時 2016-09-28 12:06:22
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-09-24 21:49:32
合計ジャッジ時間 1,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
39,168 KB
testcase_01 AC 61 ms
39,040 KB
testcase_02 AC 63 ms
39,296 KB
testcase_03 AC 62 ms
38,912 KB
testcase_04 AC 62 ms
39,040 KB
testcase_05 AC 61 ms
39,168 KB
testcase_06 AC 60 ms
39,296 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

    /////////////////////////////////No.311 z in FizzBuzzString 
    //入力文字読み取り
 var inputall = require('fs').readFileSync('/dev/stdin', 'utf8');

    //すべて受け取り数値化
    var inputnumber = Number(inputall);

    //3の倍数
    var three = Math.floor(inputnumber / 3);

    //5の倍数
    var five = Math.floor(inputnumber / 5);

    //zの個数を求める
    var result =(three + five) * 2;

    console.log(result);
0