結果

問題 No.791 うし数列
ユーザー ayaaya
提出日時 2019-08-06 11:31:35
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 163 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 32,784 KB
最終ジャッジ日時 2024-07-18 13:52:16
合計ジャッジ時間 1,234 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,192 KB
testcase_01 AC 33 ms
31,596 KB
testcase_02 AC 32 ms
31,332 KB
testcase_03 AC 34 ms
31,428 KB
testcase_04 AC 35 ms
31,568 KB
testcase_05 AC 34 ms
31,332 KB
testcase_06 AC 33 ms
31,440 KB
testcase_07 AC 32 ms
31,768 KB
testcase_08 WA -
testcase_09 AC 32 ms
31,652 KB
testcase_10 AC 37 ms
31,672 KB
testcase_11 AC 33 ms
31,168 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$inputNum=(int)trim(fgets(STDIN));
$exit=preg_match("/13+$/",$inputNum);
$cnt=preg_match_all("/3/",$inputNum);
if($exit){
  echo $cnt;
}else{
  echo "-1";
}
0