fork download
  1. <?php
  2. $handle = fopen("php://stdin", "r");
  3. list($n, $x) = array_map('intval', explode(" ", trim(fgets($handle))));
  4. $sad = 0;
  5. for ($i = 0; $i < $n; $i++){
  6. $line = explode(" ", trim(fgets($handle)));
  7. $sign = $line[0];
  8. $d = intval($line[1]);
  9. if($sign === "+"){
  10. $x += $d;
  11. } else {
  12. if($x >= $d){
  13. $x -= $d;
  14. } else {
  15. $sad++;
  16. }
  17. }
  18. }
  19. echo $x . " " . $sad;
  20. ?>
  21.  
Success #stdin #stdout 0.03s 25656KB
stdin
5 17
- 16
- 2
- 98
+ 100
- 98
stdout
3 2