結果
問題 | No.342 一番ワロタww |
ユーザー | yun_app |
提出日時 | 2016-05-11 13:02:53 |
言語 | JavaScript (node v21.7.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,050 bytes |
コンパイル時間 | 29 ms |
コンパイル使用メモリ | 6,688 KB |
実行使用メモリ | 41,948 KB |
最終ジャッジ日時 | 2024-10-12 23:42:18 |
合計ジャッジ時間 | 1,857 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
39,680 KB |
testcase_01 | AC | 68 ms
40,064 KB |
testcase_02 | AC | 76 ms
39,808 KB |
testcase_03 | AC | 74 ms
39,936 KB |
testcase_04 | AC | 73 ms
39,808 KB |
testcase_05 | AC | 69 ms
39,808 KB |
testcase_06 | AC | 72 ms
39,936 KB |
testcase_07 | AC | 68 ms
39,808 KB |
testcase_08 | AC | 74 ms
40,192 KB |
testcase_09 | AC | 68 ms
39,808 KB |
testcase_10 | AC | 68 ms
40,192 KB |
testcase_11 | AC | 66 ms
39,936 KB |
testcase_12 | AC | 68 ms
40,064 KB |
testcase_13 | AC | 69 ms
40,192 KB |
testcase_14 | AC | 67 ms
40,064 KB |
testcase_15 | AC | 67 ms
40,064 KB |
testcase_16 | WA | - |
ソースコード
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); } } } }