結果

問題 No.182 新規性の虜
ユーザー teioteio
提出日時 2020-07-26 15:53:13
言語 Perl
(5.38.2)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 193 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-06-28 16:34:32
合計ジャッジ時間 2,044 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 56 ms
17,920 KB
testcase_09 AC 94 ms
24,576 KB
testcase_10 AC 81 ms
22,400 KB
testcase_11 AC 61 ms
19,840 KB
testcase_12 AC 27 ms
11,520 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 37 ms
13,312 KB
testcase_19 AC 28 ms
11,264 KB
testcase_20 AC 20 ms
9,472 KB
testcase_21 AC 41 ms
14,208 KB
testcase_22 AC 23 ms
10,112 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 114 ms
27,904 KB
testcase_25 AC 35 ms
14,080 KB
testcase_26 AC 12 ms
7,936 KB
testcase_27 AC 4 ms
5,376 KB
evil01.txt AC 133 ms
29,824 KB
evil02.txt AC 125 ms
29,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

# use strict;
# use warnings;

<>;
chomp(my $s = <>);
my @As = split(/\s/, $s);
my %d;
foreach (@As) {
    $d{$_}++;
}
my $c = 0;
foreach (values(%d)) {
    $c++ if $_ == 1;
}
print($c, "\n");
0