結果

問題 No.342 一番ワロタww
ユーザー yun_appyun_app
提出日時 2016-05-11 13:04:25
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 1,054 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 42,208 KB
最終ジャッジ日時 2024-10-12 23:42:25
合計ジャッジ時間 1,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
40,064 KB
testcase_01 AC 70 ms
42,208 KB
testcase_02 AC 70 ms
39,936 KB
testcase_03 AC 70 ms
42,076 KB
testcase_04 AC 69 ms
39,936 KB
testcase_05 AC 68 ms
41,948 KB
testcase_06 AC 67 ms
39,936 KB
testcase_07 AC 74 ms
42,076 KB
testcase_08 AC 70 ms
40,192 KB
testcase_09 AC 72 ms
42,072 KB
testcase_10 AC 67 ms
39,936 KB
testcase_11 AC 66 ms
39,936 KB
testcase_12 AC 72 ms
39,936 KB
testcase_13 AC 70 ms
42,064 KB
testcase_14 AC 67 ms
40,064 KB
testcase_15 AC 65 ms
40,064 KB
testcase_16 AC 69 ms
39,936 KB
権限があれば一括ダウンロードができます

ソースコード

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 words = [];
    var pool = "";
    var w_cnt = 0;
    var max_length = 0;
    for(var i in chunk){
        if(chunk[i]=='w'){
            w_cnt++;
            if(pool!="")
                words.push({word:pool});
            pool = "";
        }else{
            if(w_cnt > 0 && words[words.length-1]){
                words[words.length-1].length = w_cnt;
                max_length = Math.max(max_length,w_cnt);
            }
            pool += chunk[i];
            w_cnt = 0;
        }
    }
    if(w_cnt > 0 && words[words.length-1])
        words[words.length-1].length = w_cnt;
    max_length = Math.max(max_length,w_cnt);
    pool += chunk[i];

    if(max_length==0){
        console.log("");
    }else{
        for(var i in words){
            if(words[i].length == max_length){
                console.log(words[i].word);
            }
        }
    }
}
0