結果

問題 No.182 新規性の虜
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-14 16:42:14
言語 PHP
(8.3.4)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 313 bytes
コンパイル時間 2,764 ms
コンパイル使用メモリ 31,892 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-06-08 11:35:23
合計ジャッジ時間 5,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,412 KB
testcase_01 AC 34 ms
31,420 KB
testcase_02 AC 33 ms
31,304 KB
testcase_03 AC 35 ms
30,820 KB
testcase_04 AC 34 ms
31,400 KB
testcase_05 AC 33 ms
31,428 KB
testcase_06 AC 33 ms
31,232 KB
testcase_07 AC 34 ms
31,236 KB
testcase_08 AC 46 ms
37,260 KB
testcase_09 AC 54 ms
41,396 KB
testcase_10 AC 52 ms
41,680 KB
testcase_11 AC 47 ms
37,744 KB
testcase_12 AC 39 ms
34,568 KB
testcase_13 AC 33 ms
31,216 KB
testcase_14 AC 34 ms
31,028 KB
testcase_15 AC 34 ms
31,012 KB
testcase_16 AC 33 ms
31,140 KB
testcase_17 AC 33 ms
31,496 KB
testcase_18 AC 44 ms
35,852 KB
testcase_19 AC 43 ms
34,444 KB
testcase_20 AC 42 ms
33,236 KB
testcase_21 AC 45 ms
35,796 KB
testcase_22 AC 40 ms
33,804 KB
testcase_23 AC 33 ms
31,200 KB
testcase_24 AC 49 ms
38,544 KB
testcase_25 AC 42 ms
33,424 KB
testcase_26 AC 35 ms
32,396 KB
testcase_27 AC 34 ms
31,248 KB
evil01.txt AC 59 ms
42,464 KB
evil02.txt AC 55 ms
42,340 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$N = trim(fgets(STDIN));
$A = explode(" ", trim(fgets(STDIN)));
$array = array();
for($i = 0; $i < $N; $i++) {
  $n = $A[$i];
  if(array_key_exists($n, $array)) {
    $array[$n]++;
  } else {
    $array[$n] = 1;
  }
}
$ans = 0;
foreach($array as $key => $value) {
  if($value == 1) $ans++;
}
print($ans);
?>
0