結果

問題 No.182 新規性の虜
ユーザー teioteio
提出日時 2020-07-26 15:22:32
言語 Perl
(5.38.2)
結果
AC  
実行時間 106 ms / 5,000 ms
コード長 287 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-06-28 16:23:25
合計ジャッジ時間 2,122 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 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 54 ms
17,920 KB
testcase_09 AC 86 ms
24,576 KB
testcase_10 AC 78 ms
22,144 KB
testcase_11 AC 60 ms
19,712 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 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 41 ms
13,184 KB
testcase_19 AC 33 ms
11,264 KB
testcase_20 AC 23 ms
9,344 KB
testcase_21 AC 46 ms
14,080 KB
testcase_22 AC 27 ms
10,112 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 106 ms
27,904 KB
testcase_25 AC 35 ms
14,080 KB
testcase_26 AC 13 ms
7,808 KB
testcase_27 AC 4 ms
5,376 KB
evil01.txt AC 119 ms
29,824 KB
evil02.txt AC 124 ms
29,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

# use strict;
# use warnings;

<>;
chomp(my $s = <>);
my @As = split(/\s/, $s);
my %d;
my %c;
foreach (@As) {
    next if exists($c{$_});
    if (exists($d{$_})) {
        delete $d{$_};
        $c{$_} = undef;
    } else {
        $d{$_} = undef;
    }
}
print(scalar(keys(%d)), "\n");
0