結果

問題 No.481 1から10
ユーザー happy-beanshappy-beans
提出日時 2017-03-12 19:01:06
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 2,652 ms
コンパイル使用メモリ 30,668 KB
実行使用メモリ 31,576 KB
最終ジャッジ日時 2024-06-30 00:33:17
合計ジャッジ時間 3,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,400 KB
testcase_01 AC 41 ms
31,576 KB
testcase_02 AC 40 ms
31,008 KB
testcase_03 AC 41 ms
30,924 KB
testcase_04 AC 40 ms
31,228 KB
testcase_05 AC 41 ms
31,456 KB
testcase_06 AC 41 ms
31,060 KB
testcase_07 AC 40 ms
31,444 KB
testcase_08 AC 40 ms
31,304 KB
testcase_09 AC 41 ms
31,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$args = explode(" ", trim(fgets(STDIN)));

$sum = 0;
for ($i = 0; $i < count($args); $i++) {
  $sum += $args[$i];
}

echo (55 - $sum).PHP_EOL;

return;
0