結果

問題 No.182 新規性の虜
ユーザー ayaaya
提出日時 2019-07-30 16:49:54
言語 PHP
(8.3.4)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 645 bytes
コンパイル時間 2,475 ms
コンパイル使用メモリ 31,380 KB
実行使用メモリ 44,984 KB
最終ジャッジ日時 2024-07-05 00:31:48
合計ジャッジ時間 4,010 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
32,144 KB
testcase_01 AC 41 ms
32,144 KB
testcase_02 AC 41 ms
32,144 KB
testcase_03 AC 41 ms
32,144 KB
testcase_04 AC 41 ms
32,272 KB
testcase_05 AC 40 ms
32,272 KB
testcase_06 AC 40 ms
31,892 KB
testcase_07 AC 41 ms
32,272 KB
testcase_08 AC 47 ms
38,332 KB
testcase_09 AC 55 ms
44,856 KB
testcase_10 AC 53 ms
44,984 KB
testcase_11 AC 50 ms
40,252 KB
testcase_12 AC 45 ms
36,280 KB
testcase_13 AC 41 ms
32,144 KB
testcase_14 AC 40 ms
32,144 KB
testcase_15 AC 40 ms
32,144 KB
testcase_16 AC 41 ms
32,144 KB
testcase_17 AC 41 ms
32,144 KB
testcase_18 AC 45 ms
38,200 KB
testcase_19 AC 44 ms
36,284 KB
testcase_20 AC 43 ms
34,232 KB
testcase_21 AC 47 ms
38,332 KB
testcase_22 AC 44 ms
36,152 KB
testcase_23 AC 41 ms
32,272 KB
testcase_24 AC 50 ms
40,124 KB
testcase_25 AC 44 ms
34,104 KB
testcase_26 AC 43 ms
34,228 KB
testcase_27 AC 41 ms
32,276 KB
evil01.txt AC 53 ms
44,856 KB
evil02.txt AC 55 ms
44,988 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
/*
No.182 新規性の虜
問題文
kamipeipaa君は新しいものが大好きです。
kamipeipaa君はある日N個の整数A1,A2,A3,....,ANを見つけました。
整数Aiに対して,Ai=Ajとなるjがi以外に存在しなければ,Aiは新規性があるのではないかとkamipeipaa君は考えました。 
上記の条件を満たす整数がいくつあるかkamipeipaa君に教えてあげてください。
入力
N
A1 A2 ... AN
*/
$fuyou=trim(fgets(STDIN));
$input=explode(" ",(trim(fgets(STDIN))));
$input=array_count_values($input);
$cnt=0;
foreach($input as $value){
  if($value==1){
    $cnt++;
  }
}
echo $cnt;
?>
0