結果

問題 No.791 うし数列
ユーザー mondomondo
提出日時 2019-08-06 13:30:43
言語 PHP
(8.3.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 188 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 32,400 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-07-18 13:54:33
合計ジャッジ時間 1,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,512 KB
testcase_01 AC 38 ms
31,396 KB
testcase_02 AC 40 ms
31,284 KB
testcase_03 AC 39 ms
30,964 KB
testcase_04 AC 39 ms
31,308 KB
testcase_05 AC 36 ms
31,348 KB
testcase_06 WA -
testcase_07 AC 38 ms
31,540 KB
testcase_08 AC 38 ms
31,308 KB
testcase_09 AC 38 ms
31,236 KB
testcase_10 AC 38 ms
31,408 KB
testcase_11 AC 37 ms
31,164 KB
testcase_12 AC 41 ms
31,480 KB
testcase_13 AC 37 ms
31,208 KB
testcase_14 AC 36 ms
31,432 KB
testcase_15 AC 36 ms
31,388 KB
testcase_16 AC 38 ms
31,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = str_split(trim(fgets(STDIN)));
$line = array_count_values($n);
if (count($line) == 2 && $line[1] == 1 && $n[0] == 1 && $n[1] == 3) {
    echo $line[3];
} else {
    echo "-1";
}
0