結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,176 KB
testcase_01 AC 45 ms
31,036 KB
testcase_02 AC 43 ms
31,016 KB
testcase_03 AC 41 ms
31,360 KB
testcase_04 AC 41 ms
31,136 KB
testcase_05 AC 41 ms
31,392 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 41 ms
30,984 KB
testcase_09 AC 41 ms
31,388 KB
testcase_10 AC 41 ms
31,200 KB
testcase_11 AC 41 ms
31,216 KB
testcase_12 AC 41 ms
31,216 KB
testcase_13 AC 41 ms
31,252 KB
testcase_14 AC 41 ms
31,532 KB
testcase_15 AC 42 ms
31,468 KB
testcase_16 AC 42 ms
31,388 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) {
    echo $line[3];
} else {
    echo "-1";
}
0