結果

問題 No.182 新規性の虜
ユーザー teioteio
提出日時 2020-07-26 15:30:13
言語 Perl
(5.38.2)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-06-28 16:26:23
合計ジャッジ時間 2,264 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 4 ms
5,376 KB
testcase_08 AC 61 ms
17,920 KB
testcase_09 AC 98 ms
24,448 KB
testcase_10 AC 97 ms
22,272 KB
testcase_11 AC 75 ms
19,584 KB
testcase_12 AC 30 ms
11,392 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 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 46 ms
13,184 KB
testcase_19 AC 34 ms
11,136 KB
testcase_20 AC 23 ms
9,216 KB
testcase_21 AC 51 ms
14,208 KB
testcase_22 AC 29 ms
10,112 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 122 ms
28,032 KB
testcase_25 AC 43 ms
13,952 KB
testcase_26 AC 13 ms
7,808 KB
testcase_27 AC 3 ms
5,376 KB
evil01.txt AC 142 ms
29,952 KB
evil02.txt AC 160 ms
29,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

# use strict;
# use warnings;

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