結果
問題 | No.656 ゴルフ |
ユーザー | mondo |
提出日時 | 2019-08-05 13:00:37 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 160 bytes |
コンパイル時間 | 97 ms |
コンパイル使用メモリ | 32,144 KB |
実行使用メモリ | 32,528 KB |
最終ジャッジ日時 | 2024-07-18 13:30:47 |
合計ジャッジ時間 | 1,019 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
31,236 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 41 ms
31,284 KB |
testcase_05 | AC | 42 ms
31,340 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $score = str_split(trim(fgets(STDIN))); $ans = 0; foreach ($score as $value){ if ($value == 0) { $ans = 10; } $ans += $value; } echo $ans;