結果

問題 No.182 新規性の虜
ユーザー GoryudyumaGoryudyuma
提出日時 2015-04-17 23:56:23
言語 PHP
(843.2)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 218 bytes
コンパイル時間 2,962 ms
コンパイル使用メモリ 30,780 KB
実行使用メモリ 41,996 KB
最終ジャッジ日時 2024-12-26 19:02:51
合計ジャッジ時間 6,101 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
31,248 KB
testcase_01 AC 55 ms
31,104 KB
testcase_02 AC 52 ms
31,156 KB
testcase_03 AC 50 ms
31,020 KB
testcase_04 AC 50 ms
31,020 KB
testcase_05 AC 50 ms
30,940 KB
testcase_06 AC 49 ms
31,028 KB
testcase_07 AC 50 ms
31,048 KB
testcase_08 AC 62 ms
36,200 KB
testcase_09 AC 77 ms
40,988 KB
testcase_10 AC 74 ms
41,996 KB
testcase_11 AC 67 ms
37,840 KB
testcase_12 AC 59 ms
34,320 KB
testcase_13 AC 49 ms
31,320 KB
testcase_14 AC 53 ms
31,084 KB
testcase_15 AC 50 ms
30,808 KB
testcase_16 AC 50 ms
31,268 KB
testcase_17 AC 52 ms
31,028 KB
testcase_18 AC 64 ms
35,852 KB
testcase_19 AC 58 ms
34,188 KB
testcase_20 AC 56 ms
33,104 KB
testcase_21 AC 63 ms
35,852 KB
testcase_22 AC 58 ms
33,676 KB
testcase_23 AC 51 ms
31,196 KB
testcase_24 AC 70 ms
38,408 KB
testcase_25 AC 57 ms
33,420 KB
testcase_26 AC 53 ms
32,268 KB
testcase_27 AC 49 ms
31,076 KB
evil01.txt AC 80 ms
42,272 KB
evil02.txt AC 77 ms
42,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

fgets(STDIN);
$a=explode(' ',trim(fgets(STDIN)));
$b=array();
foreach($a as $x){
	if(isset($b[$x])){
		$b[$x]+=1;
	}else{
		$b[$x]=1;
	}
}
$c=0;
foreach($b as $x => $y){
	if($y==1){
		$c++;
	}
}
echo $c.PHP_EOL;
0