結果

問題 No.289 数字を全て足そう
ユーザー mondomondo
提出日時 2019-07-24 17:51:51
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 170 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 31,268 KB
実行使用メモリ 31,724 KB
最終ジャッジ日時 2024-06-28 01:47:00
合計ジャッジ時間 1,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,144 KB
testcase_01 AC 43 ms
31,560 KB
testcase_02 AC 42 ms
31,348 KB
testcase_03 AC 41 ms
31,388 KB
testcase_04 AC 42 ms
31,152 KB
testcase_05 AC 41 ms
31,724 KB
testcase_06 AC 40 ms
31,512 KB
testcase_07 AC 41 ms
31,684 KB
testcase_08 AC 42 ms
31,144 KB
testcase_09 AC 41 ms
31,268 KB
testcase_10 AC 41 ms
31,488 KB
testcase_11 AC 41 ms
31,552 KB
testcase_12 AC 41 ms
31,192 KB
testcase_13 AC 41 ms
31,300 KB
testcase_14 AC 41 ms
31,052 KB
testcase_15 AC 41 ms
31,536 KB
testcase_16 AC 41 ms
31,284 KB
testcase_17 AC 40 ms
31,344 KB
testcase_18 AC 41 ms
31,340 KB
testcase_19 AC 41 ms
31,452 KB
testcase_20 AC 41 ms
31,444 KB
testcase_21 AC 41 ms
31,604 KB
testcase_22 AC 42 ms
31,256 KB
testcase_23 AC 42 ms
31,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));
//正規表現の置換
$s = preg_replace('/[^0-9]/','', $s);
//文字列を配列に置換
$array = str_split($s);
echo array_sum($array);
0