結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,376 KB
testcase_01 AC 4 ms
5,504 KB
testcase_02 AC 3 ms
5,504 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,504 KB
testcase_08 AC 64 ms
17,920 KB
testcase_09 AC 98 ms
24,704 KB
testcase_10 AC 93 ms
22,400 KB
testcase_11 AC 69 ms
19,712 KB
testcase_12 AC 28 ms
11,520 KB
testcase_13 AC 3 ms
5,504 KB
testcase_14 AC 3 ms
5,504 KB
testcase_15 AC 3 ms
5,504 KB
testcase_16 AC 3 ms
5,504 KB
testcase_17 AC 3 ms
5,504 KB
testcase_18 AC 38 ms
13,184 KB
testcase_19 AC 30 ms
11,264 KB
testcase_20 AC 21 ms
9,344 KB
testcase_21 AC 45 ms
14,208 KB
testcase_22 AC 24 ms
10,240 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 111 ms
28,160 KB
testcase_25 AC 40 ms
14,080 KB
testcase_26 AC 13 ms
7,936 KB
testcase_27 AC 3 ms
5,504 KB
evil01.txt AC 132 ms
30,080 KB
evil02.txt AC 136 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{$_} = 0 if !exists($d{$_});
    $d{$_}++;
}
my $c = 0;
foreach (values(%d)) {
    $c++ if $_ == 1;
}
print($c, "\n");
0