結果

問題 No.1692 Expectations
ユーザー gmm_teagmm_tea
提出日時 2021-10-01 21:26:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 40,448 KB
最終ジャッジ日時 2024-07-19 10:29:23
合計ジャッジ時間 3,846 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
11,904 KB
testcase_01 AC 76 ms
12,032 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 75 ms
12,288 KB
testcase_04 AC 77 ms
12,160 KB
testcase_05 AC 76 ms
12,288 KB
testcase_06 AC 75 ms
11,904 KB
testcase_07 AC 76 ms
12,288 KB
testcase_08 AC 79 ms
12,032 KB
testcase_09 AC 74 ms
12,160 KB
testcase_10 AC 135 ms
25,728 KB
testcase_11 AC 157 ms
28,288 KB
testcase_12 AC 78 ms
12,032 KB
testcase_13 AC 73 ms
12,032 KB
testcase_14 AC 81 ms
13,696 KB
testcase_15 AC 144 ms
28,416 KB
testcase_16 AC 82 ms
13,440 KB
testcase_17 AC 112 ms
20,480 KB
testcase_18 AC 94 ms
15,232 KB
testcase_19 AC 181 ms
36,480 KB
testcase_20 AC 140 ms
30,592 KB
testcase_21 AC 177 ms
40,448 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map(&:to_i)
a=gets.split.map(&:to_i)
if n==m&&a.uniq.size==1
  puts [1,1].join(" ")
else
  puts [a.uniq.size,0].join(" ")
end
0