fork download
  1. <?php
  2. // N を取得
  3. $N = trim(fgets(STDIN));
  4.  
  5. // N 回ループして処理
  6. for ($i = 0; $i < $N; $i++) {
  7. // 配列のサイズ K とその要素を取得
  8. $arr = explode(" ", trim(fgets(STDIN)));
  9.  
  10. // 最初の値(K)を取り除き、残りの要素を和にする
  11. array_shift($arr);
  12.  
  13. // 配列の要素の和を求めて出力
  14. echo array_sum($arr) . "\n";
  15. }
Success #stdin #stdout 0.03s 25624KB
stdin
Standard input is empty
stdout
Standard output is empty