結果
問題 | No.791 うし数列 |
ユーザー | dyechi |
提出日時 | 2019-03-28 10:35:12 |
言語 | PHP (8.3.4) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 241 bytes |
コンパイル時間 | 1,739 ms |
コンパイル使用メモリ | 30,916 KB |
実行使用メモリ | 31,220 KB |
最終ジャッジ日時 | 2024-10-12 13:32:15 |
合計ジャッジ時間 | 3,167 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
30,924 KB |
testcase_01 | AC | 40 ms
30,804 KB |
testcase_02 | AC | 39 ms
30,876 KB |
testcase_03 | AC | 40 ms
30,848 KB |
testcase_04 | AC | 40 ms
30,840 KB |
testcase_05 | AC | 40 ms
30,860 KB |
testcase_06 | AC | 40 ms
30,876 KB |
testcase_07 | AC | 41 ms
30,888 KB |
testcase_08 | AC | 41 ms
31,152 KB |
testcase_09 | AC | 41 ms
30,808 KB |
testcase_10 | AC | 40 ms
31,008 KB |
testcase_11 | AC | 41 ms
31,140 KB |
testcase_12 | AC | 41 ms
31,220 KB |
testcase_13 | AC | 40 ms
31,032 KB |
testcase_14 | AC | 40 ms
30,832 KB |
testcase_15 | AC | 40 ms
31,100 KB |
testcase_16 | AC | 41 ms
31,048 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $s = trim(fgets(STDIN)); if (strlen($s) > 1) { if (substr_count($s, "3") == strlen($s) - 1 && substr($s, 0, 1) == "1") { echo substr_count($s, "3", 1).PHP_EOL; } else { echo "-1".PHP_EOL; } } else { echo "-1".PHP_EOL; } ?>