s25g5d4

Untitled

Dec 5th, 2014
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. process.stdin.resume();
  2. process.stdin.setEncoding('utf8');
  3. // 自分の得意な言語で
  4. // Let's チャレンジ!!
  5.  
  6. var data = '';
  7. process.stdin.on('data', function (chunk) {
  8.     data += chunk.toString();
  9. });
  10. process.stdin.on('end', function () {
  11.   console.log(data.split(/ |\r?\n/g).slice(2).reduce(function (p, c, i, a) {
  12.     this[1] -= -c - (-a[i - this[0]] || 0);
  13.     return this[1] > p ? this[1] : p;
  14.   }.bind([~~(data.substr(0, data.indexOf(' '))), 0]), 0));
  15. });
Advertisement
Add Comment
Please, Sign In to add comment