結果

問題 No.3022 縛りFizzBuzz (Easy)
ユーザー tsumuritsumuri
提出日時 2022-07-06 00:29:01
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 519 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 39,424 KB
最終ジャッジ日時 2024-05-09 20:45:16
合計ジャッジ時間 832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(input){
    let one = "a".length;
    let three = "abc".length;
    let five = "abcde".length;
    let fifteen = "aaaaabbbbbccccc".length;
    let N = Number(input)+one;
    let C = one;
    while(C<N){
        if(C%fifteen==0){
        console.log("FizzBuzz");
        }else if(C%three==0){
        console.log("Fizz");
        }else if(C%five==0){
        console.log("Buzz");
        }else{
        console.log(C);
        }
        C++;
    }
}
main(require('fs').readFileSync('/dev/stdin', 'UTF-8'));
0