結果

問題 No.182 新規性の虜
ユーザー papinianuspapinianus
提出日時 2016-07-25 13:08:45
言語 PHP
(8.3.4)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 160 bytes
コンパイル時間 4,344 ms
コンパイル使用メモリ 30,520 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-06-08 07:59:13
合計ジャッジ時間 6,590 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
30,792 KB
testcase_01 AC 35 ms
30,928 KB
testcase_02 AC 38 ms
30,948 KB
testcase_03 AC 38 ms
30,840 KB
testcase_04 AC 37 ms
30,712 KB
testcase_05 AC 36 ms
31,036 KB
testcase_06 AC 37 ms
31,000 KB
testcase_07 AC 39 ms
30,992 KB
testcase_08 AC 48 ms
36,452 KB
testcase_09 AC 56 ms
41,868 KB
testcase_10 AC 55 ms
41,612 KB
testcase_11 AC 50 ms
37,576 KB
testcase_12 AC 42 ms
34,444 KB
testcase_13 AC 38 ms
30,956 KB
testcase_14 AC 37 ms
31,056 KB
testcase_15 AC 38 ms
30,884 KB
testcase_16 AC 38 ms
30,888 KB
testcase_17 AC 36 ms
30,988 KB
testcase_18 AC 43 ms
35,852 KB
testcase_19 AC 42 ms
34,188 KB
testcase_20 AC 41 ms
33,036 KB
testcase_21 AC 44 ms
35,852 KB
testcase_22 AC 42 ms
33,804 KB
testcase_23 AC 38 ms
30,940 KB
testcase_24 AC 50 ms
39,948 KB
testcase_25 AC 43 ms
33,164 KB
testcase_26 AC 40 ms
32,396 KB
testcase_27 AC 37 ms
31,088 KB
evil01.txt AC 56 ms
43,672 KB
evil02.txt AC 57 ms
43,668 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$null = trim(fgets(STDIN));
$nums = explode(" ",trim(fgets(STDIN)));
$counts = array_count_values($nums);
echo count(array_keys($counts,1));
echo PHP_EOL;
0