結果

問題 No.182 新規性の虜
ユーザー takutakutakutaku
提出日時 2021-06-14 14:38:14
言語 PHP
(8.3.4)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 292 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 30,636 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-06-06 18:34:45
合計ジャッジ時間 4,367 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,176 KB
testcase_01 AC 39 ms
30,784 KB
testcase_02 AC 39 ms
31,340 KB
testcase_03 AC 38 ms
31,192 KB
testcase_04 AC 39 ms
31,056 KB
testcase_05 AC 38 ms
30,744 KB
testcase_06 AC 38 ms
31,256 KB
testcase_07 AC 38 ms
30,808 KB
testcase_08 AC 47 ms
36,076 KB
testcase_09 AC 53 ms
40,992 KB
testcase_10 AC 52 ms
41,868 KB
testcase_11 AC 48 ms
37,852 KB
testcase_12 AC 44 ms
34,444 KB
testcase_13 AC 39 ms
31,092 KB
testcase_14 AC 39 ms
30,896 KB
testcase_15 AC 38 ms
30,776 KB
testcase_16 AC 38 ms
30,768 KB
testcase_17 AC 39 ms
30,956 KB
testcase_18 AC 46 ms
35,728 KB
testcase_19 AC 45 ms
34,128 KB
testcase_20 AC 42 ms
33,168 KB
testcase_21 AC 45 ms
35,852 KB
testcase_22 AC 42 ms
33,680 KB
testcase_23 AC 39 ms
31,408 KB
testcase_24 AC 48 ms
38,668 KB
testcase_25 AC 42 ms
33,168 KB
testcase_26 AC 40 ms
32,272 KB
testcase_27 AC 38 ms
31,256 KB
evil01.txt AC 54 ms
42,152 KB
evil02.txt AC 53 ms
42,280 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