結果

問題 No.182 新規性の虜
ユーザー mondomondo
提出日時 2019-07-31 14:04:46
言語 PHP
(8.3.4)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 44,984 KB
最終ジャッジ日時 2024-07-05 06:28:10
合計ジャッジ時間 2,412 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
32,016 KB
testcase_01 AC 40 ms
32,272 KB
testcase_02 AC 40 ms
32,276 KB
testcase_03 AC 39 ms
32,276 KB
testcase_04 AC 40 ms
32,272 KB
testcase_05 AC 40 ms
32,144 KB
testcase_06 AC 40 ms
32,144 KB
testcase_07 AC 40 ms
32,272 KB
testcase_08 AC 48 ms
38,400 KB
testcase_09 AC 56 ms
44,856 KB
testcase_10 AC 53 ms
44,984 KB
testcase_11 AC 49 ms
40,252 KB
testcase_12 AC 42 ms
36,408 KB
testcase_13 AC 39 ms
32,272 KB
testcase_14 AC 40 ms
32,148 KB
testcase_15 AC 39 ms
32,276 KB
testcase_16 AC 40 ms
32,144 KB
testcase_17 AC 39 ms
32,144 KB
testcase_18 AC 45 ms
38,456 KB
testcase_19 AC 43 ms
36,284 KB
testcase_20 AC 42 ms
34,360 KB
testcase_21 AC 45 ms
38,332 KB
testcase_22 AC 44 ms
36,280 KB
testcase_23 AC 39 ms
32,148 KB
testcase_24 AC 50 ms
42,428 KB
testcase_25 AC 43 ms
34,232 KB
testcase_26 AC 43 ms
34,108 KB
testcase_27 AC 39 ms
32,272 KB
evil01.txt AC 52 ms
46,576 KB
evil02.txt AC 54 ms
46,324 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$array1 = explode(" ",trim(fgets(STDIN)));
$array2 = array_count_values($array1);
$array3 = array();
foreach ($array2 as $key => $value){
    $array3 = array_keys($array2, "1");
    break;
}
echo count($array3);
0