結果

問題 No.182 新規性の虜
ユーザー papinianuspapinianus
提出日時 2016-07-25 13:08:45
言語 PHP
(8.3.4)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 160 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 18,416 KB
実行使用メモリ 37,160 KB
最終ジャッジ日時 2023-08-27 12:24:17
合計ジャッジ時間 2,696 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
18,796 KB
testcase_01 AC 15 ms
18,636 KB
testcase_02 AC 15 ms
18,648 KB
testcase_03 AC 15 ms
18,632 KB
testcase_04 AC 15 ms
18,624 KB
testcase_05 AC 15 ms
18,732 KB
testcase_06 AC 15 ms
18,692 KB
testcase_07 AC 16 ms
18,632 KB
testcase_08 AC 23 ms
26,780 KB
testcase_09 AC 31 ms
37,160 KB
testcase_10 AC 28 ms
35,104 KB
testcase_11 AC 25 ms
28,836 KB
testcase_12 AC 19 ms
24,796 KB
testcase_13 AC 15 ms
18,792 KB
testcase_14 AC 15 ms
18,632 KB
testcase_15 AC 15 ms
18,720 KB
testcase_16 AC 15 ms
18,696 KB
testcase_17 AC 15 ms
18,628 KB
testcase_18 AC 21 ms
26,920 KB
testcase_19 AC 19 ms
22,800 KB
testcase_20 AC 17 ms
20,668 KB
testcase_21 AC 22 ms
26,844 KB
testcase_22 AC 18 ms
22,856 KB
testcase_23 AC 15 ms
18,732 KB
testcase_24 AC 28 ms
37,048 KB
testcase_25 AC 20 ms
24,816 KB
testcase_26 AC 17 ms
20,644 KB
testcase_27 AC 15 ms
18,704 KB
evil01.txt AC 30 ms
37,020 KB
evil02.txt AC 31 ms
37,156 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