結果

問題 No.289 数字を全て足そう
ユーザー ねずねず
提出日時 2018-01-25 08:13:44
言語 PHP
(8.3.4)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 158 bytes
コンパイル時間 2,977 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 31,780 KB
最終ジャッジ日時 2024-06-08 01:32:18
合計ジャッジ時間 4,864 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,552 KB
testcase_01 AC 34 ms
31,372 KB
testcase_02 AC 34 ms
31,392 KB
testcase_03 AC 34 ms
31,156 KB
testcase_04 AC 33 ms
31,468 KB
testcase_05 AC 33 ms
31,404 KB
testcase_06 AC 33 ms
31,404 KB
testcase_07 AC 35 ms
31,308 KB
testcase_08 AC 35 ms
31,288 KB
testcase_09 AC 34 ms
31,440 KB
testcase_10 AC 35 ms
31,680 KB
testcase_11 AC 34 ms
31,304 KB
testcase_12 AC 35 ms
31,368 KB
testcase_13 AC 36 ms
31,380 KB
testcase_14 AC 35 ms
31,748 KB
testcase_15 AC 37 ms
31,448 KB
testcase_16 AC 34 ms
31,024 KB
testcase_17 AC 34 ms
31,656 KB
testcase_18 AC 35 ms
31,780 KB
testcase_19 AC 35 ms
31,404 KB
testcase_20 AC 33 ms
31,704 KB
testcase_21 AC 33 ms
31,380 KB
testcase_22 AC 35 ms
31,340 KB
testcase_23 AC 34 ms
31,572 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$str = trim(fgets(STDIN));
$ans = 0;
for ($i = 0; $i < strlen($str); $i++)
	$ans += preg_match('/[0-9]/', $str[$i]) === 1 ? $str[$i] : 0;
print $ans;
?>
0