結果

問題 No.311 z in FizzBuzzString
ユーザー yun_appyun_app
提出日時 2016-05-11 10:59:05
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 42,452 KB
最終ジャッジ日時 2024-09-24 21:39:45
合計ジャッジ時間 1,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
40,064 KB
testcase_01 AC 69 ms
39,936 KB
testcase_02 AC 73 ms
41,936 KB
testcase_03 AC 71 ms
39,936 KB
testcase_04 AC 71 ms
40,064 KB
testcase_05 AC 67 ms
41,972 KB
testcase_06 AC 68 ms
41,840 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

process.stdin.resume();
process.stdin.setEncoding('utf8');
process.stdin.on('data', function(chunk) {
    main(chunk.trim());
});
function main(chunk){
    // your code goes here
    var n = Number(chunk);
    console.log(2*(Math.floor(n/3) + Math.floor(n/5)));
}
0