結果

問題 No.1692 Expectations
ユーザー neko_the_shadowneko_the_shadow
提出日時 2021-10-13 09:53:48
言語 Perl
(5.40.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 25 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 73,060 KB
最終ジャッジ日時 2024-09-17 16:15:22
合計ジャッジ時間 1,802 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

sub gets {
    chomp(my $line = <>);
    $line;
}

my ($n, $m) = split / /, gets;
my @a = split / /, gets;

my %h = map {$_, 1} @a;
my $max = keys(%h);
if ($max==1 && $n==$m) {
    print "$max 1\n";
} else {
    print "$max 0\n";
}

0