結果

問題 No.1692 Expectations
ユーザー horiesinitihoriesiniti
提出日時 2023-07-05 08:14:03
言語 Ruby
(3.3.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 35,200 KB
最終ジャッジ日時 2024-07-19 02:34:18
合計ジャッジ時間 4,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,032 KB
testcase_01 AC 77 ms
12,032 KB
testcase_02 AC 84 ms
12,032 KB
testcase_03 AC 76 ms
12,032 KB
testcase_04 AC 75 ms
12,160 KB
testcase_05 AC 77 ms
12,160 KB
testcase_06 AC 76 ms
12,288 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 84 ms
12,160 KB
testcase_09 AC 81 ms
12,032 KB
testcase_10 AC 149 ms
23,936 KB
testcase_11 AC 155 ms
23,808 KB
testcase_12 AC 78 ms
12,032 KB
testcase_13 AC 76 ms
12,032 KB
testcase_14 AC 84 ms
13,440 KB
testcase_15 AC 163 ms
28,672 KB
testcase_16 AC 91 ms
14,208 KB
testcase_17 AC 129 ms
22,400 KB
testcase_18 AC 95 ms
15,360 KB
testcase_19 AC 182 ms
32,128 KB
testcase_20 AC 167 ms
32,512 KB
testcase_21 AC 188 ms
35,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split(" ").map{|e| e.to_i}
xs=gets.split(" ").map{|e| e.to_i}
hs={}
xs.each{|x|
	hs[x]=0
}
if hs.size==1 && n==m then
	puts "1 1"
else
	puts [hs.size,0].join(" ")
end
0