結果

問題 No.791 うし数列
ユーザー ayaaya
提出日時 2019-08-06 11:56:31
言語 PHP
(8.3.4)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 31,000 KB
実行使用メモリ 31,536 KB
最終ジャッジ日時 2024-07-18 13:52:41
合計ジャッジ時間 1,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
31,328 KB
testcase_01 AC 33 ms
31,536 KB
testcase_02 AC 35 ms
31,352 KB
testcase_03 AC 36 ms
31,124 KB
testcase_04 AC 34 ms
31,140 KB
testcase_05 AC 32 ms
31,372 KB
testcase_06 AC 33 ms
31,356 KB
testcase_07 AC 33 ms
31,096 KB
testcase_08 AC 32 ms
31,072 KB
testcase_09 AC 32 ms
31,204 KB
testcase_10 AC 32 ms
31,308 KB
testcase_11 AC 34 ms
31,316 KB
testcase_12 AC 33 ms
31,448 KB
testcase_13 AC 32 ms
31,376 KB
testcase_14 AC 32 ms
31,152 KB
testcase_15 AC 33 ms
31,240 KB
testcase_16 AC 36 ms
31,476 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$input = trim(fgets(STDIN));
$ans=-1;
if(strlen($input)>1){
	if(substr_count($input, "3") == strlen($input)-1 && substr($input, 0, 1) == "1") {
		$ans= substr_count($input,"3",1);
	} 
}
echo $ans;
0