結果

問題 No.661 ハローキティはりんご3個分
ユーザー YuzunohaYuzunoha
提出日時 2018-03-10 16:22:45
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 579 bytes
コンパイル時間 27 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 39,532 KB
最終ジャッジ日時 2024-10-13 00:35:11
合計ジャッジ時間 730 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

function Main(input) {
    var data = input.split("\r");
    main(data);
}

function main(args){
    var nums = [];
    var cnt = 0;
    for(var i=1; i<args.length; i++){
        nums[cnt++] = Number(args[i]);
    }
    
    for(var n of nums){
        if(0===n%8 && 0===n%10){
            console.log("ikisugi");
        }else if(0===n%8){
            console.log("iki");
        }else if(0===n%10){
            console.log("sugi");
        }else{
            console.log(n/3);
        }
    }

}

// Don't edit this line!
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0