結果

問題 No.1692 Expectations
ユーザー neko_the_shadowneko_the_shadow
提出日時 2021-10-13 09:51:29
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 73,080 KB
最終ジャッジ日時 2024-09-17 16:15:18
合計ジャッジ時間 2,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,812 KB
testcase_01 AC 5 ms
6,940 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 6 ms
6,944 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 92 ms
44,936 KB
testcase_11 AC 97 ms
47,132 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 17 ms
11,264 KB
testcase_15 AC 147 ms
55,228 KB
testcase_16 AC 18 ms
11,392 KB
testcase_17 AC 71 ms
31,620 KB
testcase_18 AC 30 ms
16,512 KB
testcase_19 AC 180 ms
66,016 KB
testcase_20 AC 177 ms
60,332 KB
testcase_21 AC 211 ms
73,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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);
print $max==1 ? "$max $max\n" : "$max 0\n";

0