結果

問題 No.182 新規性の虜
ユーザー 小出雄也とはまた違う人小出雄也とはまた違う人
提出日時 2017-03-14 14:55:05
言語 PHP
(8.3.4)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 3,961 ms
コンパイル使用メモリ 30,952 KB
実行使用メモリ 42,028 KB
最終ジャッジ日時 2024-06-08 10:10:47
合計ジャッジ時間 4,057 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
30,776 KB
testcase_01 AC 33 ms
31,076 KB
testcase_02 AC 33 ms
30,968 KB
testcase_03 AC 33 ms
30,860 KB
testcase_04 AC 33 ms
30,776 KB
testcase_05 AC 33 ms
31,200 KB
testcase_06 AC 32 ms
30,904 KB
testcase_07 AC 33 ms
31,140 KB
testcase_08 AC 43 ms
37,392 KB
testcase_09 AC 52 ms
42,028 KB
testcase_10 AC 52 ms
41,176 KB
testcase_11 AC 48 ms
38,052 KB
testcase_12 AC 39 ms
34,516 KB
testcase_13 AC 34 ms
31,208 KB
testcase_14 AC 33 ms
30,800 KB
testcase_15 AC 33 ms
31,036 KB
testcase_16 AC 36 ms
30,880 KB
testcase_17 AC 34 ms
30,980 KB
testcase_18 AC 45 ms
35,852 KB
testcase_19 AC 41 ms
34,316 KB
testcase_20 AC 38 ms
33,292 KB
testcase_21 AC 44 ms
36,236 KB
testcase_22 AC 38 ms
33,804 KB
testcase_23 AC 35 ms
30,972 KB
testcase_24 AC 48 ms
38,540 KB
testcase_25 AC 41 ms
33,488 KB
testcase_26 AC 37 ms
32,396 KB
testcase_27 AC 33 ms
31,120 KB
evil01.txt AC 54 ms
42,336 KB
evil02.txt AC 59 ms
42,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$a	 = fgets(STDIN);
$b	 = trim(fgets(STDIN));

$array = explode(" ", $b);

$result = array();

foreach ($array as $value)
{
	if ( ! isset($result[trim($value)]))
	{
		$result[$value] = true;
	}
	else
	{
		$result[$value] = false;
	}
}


$count = 0;
foreach ($result as $result_item)
{
	if ($result_item === true)
	{
		$count++;
	}
}
echo $count . "\n";
0