結果

問題 No.289 数字を全て足そう
ユーザー ねずねず
提出日時 2018-07-26 22:17:31
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 155 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 32,272 KB
最終ジャッジ日時 2024-07-01 03:27:18
合計ジャッジ時間 2,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,156 KB
testcase_01 AC 40 ms
31,180 KB
testcase_02 AC 40 ms
31,428 KB
testcase_03 AC 41 ms
30,880 KB
testcase_04 AC 41 ms
32,272 KB
testcase_05 AC 41 ms
30,928 KB
testcase_06 AC 41 ms
30,952 KB
testcase_07 AC 42 ms
31,124 KB
testcase_08 AC 41 ms
31,360 KB
testcase_09 AC 40 ms
31,064 KB
testcase_10 AC 42 ms
30,748 KB
testcase_11 AC 41 ms
31,304 KB
testcase_12 AC 41 ms
30,824 KB
testcase_13 AC 41 ms
31,328 KB
testcase_14 AC 41 ms
31,464 KB
testcase_15 AC 41 ms
31,004 KB
testcase_16 AC 40 ms
31,112 KB
testcase_17 AC 41 ms
31,348 KB
testcase_18 AC 41 ms
31,296 KB
testcase_19 AC 41 ms
31,260 KB
testcase_20 AC 40 ms
30,888 KB
testcase_21 AC 41 ms
31,016 KB
testcase_22 AC 41 ms
31,236 KB
testcase_23 AC 41 ms
31,356 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));
$ans = 0;
for ($i = 0; $i < strlen($s); $i++) {
    if (is_numeric($s[$i])) {
        $ans += $s[$i];
    }
}
echo $ans;
?>
0