結果
問題 | No.311 z in FizzBuzzString |
ユーザー | mobuo |
提出日時 | 2016-01-07 15:48:11 |
言語 | JavaScript (node v21.7.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 474 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 7,200 KB |
実行使用メモリ | 42,460 KB |
最終ジャッジ日時 | 2024-09-24 21:30:36 |
合計ジャッジ時間 | 1,682 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
process.stdin.resume(); process.stdin.setEncoding('utf8'); // 自分の得意な言語で // Let's チャレンジ!! process.stdin.on('data', function (chunk) { var line = chunk.toString().split('\n'); for(var i=1; i<100; i++){ if(i % 3 ===0 && i % 5 === 0){ console.log("FizzBuzz"); }else if(i % 3 ===0){ console.log("Fizz"); }else if(i % 5 ===0){ console.log("Buzz"); } console.log(i); } });