結果

問題 No.182 新規性の虜
ユーザー takutakutakutaku
提出日時 2021-06-14 14:38:14
言語 PHP
(843.2)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 292 bytes
コンパイル時間 4,059 ms
コンパイル使用メモリ 30,680 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-12-24 11:40:41
合計ジャッジ時間 6,078 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
30,868 KB
testcase_01 AC 44 ms
30,864 KB
testcase_02 AC 44 ms
31,016 KB
testcase_03 AC 45 ms
30,732 KB
testcase_04 AC 45 ms
30,960 KB
testcase_05 AC 45 ms
30,788 KB
testcase_06 AC 43 ms
30,792 KB
testcase_07 AC 46 ms
30,952 KB
testcase_08 AC 56 ms
36,196 KB
testcase_09 AC 68 ms
40,992 KB
testcase_10 AC 62 ms
41,868 KB
testcase_11 AC 60 ms
37,596 KB
testcase_12 AC 51 ms
34,192 KB
testcase_13 AC 47 ms
30,760 KB
testcase_14 AC 46 ms
30,744 KB
testcase_15 AC 46 ms
30,872 KB
testcase_16 AC 44 ms
30,848 KB
testcase_17 AC 45 ms
31,032 KB
testcase_18 AC 54 ms
35,724 KB
testcase_19 AC 52 ms
34,188 KB
testcase_20 AC 49 ms
33,292 KB
testcase_21 AC 54 ms
35,724 KB
testcase_22 AC 49 ms
33,680 KB
testcase_23 AC 44 ms
30,992 KB
testcase_24 AC 58 ms
38,288 KB
testcase_25 AC 49 ms
33,164 KB
testcase_26 AC 47 ms
32,268 KB
testcase_27 AC 44 ms
31,080 KB
evil01.txt AC 68 ms
42,152 KB
evil02.txt AC 67 ms
42,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    
    $num = trim(fgets(STDIN));
    $array_num = explode(" ",trim(fgets(STDIN)));
    $count = array_count_values($array_num);
    $result = 0;
    
    
    foreach($count as $value) {
        if($value == 1) {
            $result++;
        }
    }
    
    echo $result;
    
?>
0