結果

問題 No.182 新規性の虜
ユーザー po1415po1415
提出日時 2015-05-29 00:25:53
言語 PHP
(8.3.4)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 193 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 31,068 KB
実行使用メモリ 42,344 KB
最終ジャッジ日時 2024-06-08 03:04:38
合計ジャッジ時間 3,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,048 KB
testcase_01 AC 42 ms
30,864 KB
testcase_02 AC 42 ms
30,840 KB
testcase_03 AC 42 ms
31,012 KB
testcase_04 AC 42 ms
31,136 KB
testcase_05 AC 41 ms
30,964 KB
testcase_06 AC 42 ms
30,932 KB
testcase_07 AC 41 ms
31,148 KB
testcase_08 AC 58 ms
37,644 KB
testcase_09 AC 70 ms
42,344 KB
testcase_10 AC 67 ms
41,076 KB
testcase_11 AC 60 ms
37,976 KB
testcase_12 AC 50 ms
34,572 KB
testcase_13 AC 42 ms
31,100 KB
testcase_14 AC 42 ms
31,008 KB
testcase_15 AC 42 ms
31,224 KB
testcase_16 AC 41 ms
30,976 KB
testcase_17 AC 41 ms
31,124 KB
testcase_18 AC 54 ms
35,596 KB
testcase_19 AC 51 ms
34,256 KB
testcase_20 AC 47 ms
33,168 KB
testcase_21 AC 56 ms
36,236 KB
testcase_22 AC 49 ms
33,552 KB
testcase_23 AC 41 ms
31,128 KB
testcase_24 AC 64 ms
40,204 KB
testcase_25 AC 55 ms
35,596 KB
testcase_26 AC 44 ms
32,652 KB
testcase_27 AC 41 ms
31,152 KB
evil01.txt AC 74 ms
43,556 KB
evil02.txt AC 74 ms
43,556 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN, '%d', $num);

$fmt = '%s';
for ($i = 1; $i < $num; $i++) {
	$fmt .= ' %s';
}
$arrInput = fscanf(STDIN, $fmt);

echo count(array_keys(array_count_values($arrInput), '1'));
?>
0