結果

問題 No.182 新規性の虜
ユーザー GoryudyumaGoryudyuma
提出日時 2015-04-17 23:56:23
言語 PHP
(8.3.4)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 218 bytes
コンパイル時間 1,242 ms
コンパイル使用メモリ 30,852 KB
実行使用メモリ 41,996 KB
最終ジャッジ日時 2024-06-08 02:59:31
合計ジャッジ時間 3,408 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
31,220 KB
testcase_01 AC 38 ms
31,296 KB
testcase_02 AC 35 ms
31,128 KB
testcase_03 AC 37 ms
31,324 KB
testcase_04 AC 37 ms
31,204 KB
testcase_05 AC 36 ms
31,112 KB
testcase_06 AC 36 ms
31,272 KB
testcase_07 AC 37 ms
31,232 KB
testcase_08 AC 45 ms
36,200 KB
testcase_09 AC 51 ms
41,368 KB
testcase_10 AC 50 ms
41,996 KB
testcase_11 AC 48 ms
38,224 KB
testcase_12 AC 43 ms
34,444 KB
testcase_13 AC 38 ms
31,324 KB
testcase_14 AC 39 ms
30,992 KB
testcase_15 AC 37 ms
31,208 KB
testcase_16 AC 38 ms
31,244 KB
testcase_17 AC 38 ms
31,156 KB
testcase_18 AC 45 ms
35,980 KB
testcase_19 AC 43 ms
34,576 KB
testcase_20 AC 39 ms
33,424 KB
testcase_21 AC 45 ms
36,108 KB
testcase_22 AC 41 ms
33,808 KB
testcase_23 AC 37 ms
31,388 KB
testcase_24 AC 47 ms
38,672 KB
testcase_25 AC 45 ms
33,164 KB
testcase_26 AC 39 ms
32,340 KB
testcase_27 AC 36 ms
31,012 KB
evil01.txt AC 50 ms
42,532 KB
evil02.txt AC 50 ms
42,528 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