結果

問題 No.1692 Expectations
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-21 15:54:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 166,036 KB
最終ジャッジ日時 2024-10-21 15:54:19
合計ジャッジ時間 3,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,216 KB
testcase_01 AC 37 ms
52,184 KB
testcase_02 AC 37 ms
52,740 KB
testcase_03 AC 38 ms
53,424 KB
testcase_04 AC 37 ms
52,568 KB
testcase_05 AC 37 ms
53,088 KB
testcase_06 AC 37 ms
52,888 KB
testcase_07 AC 37 ms
53,492 KB
testcase_08 AC 36 ms
52,892 KB
testcase_09 AC 37 ms
52,068 KB
testcase_10 AC 75 ms
96,904 KB
testcase_11 AC 75 ms
96,672 KB
testcase_12 AC 51 ms
53,908 KB
testcase_13 AC 36 ms
52,856 KB
testcase_14 AC 45 ms
64,172 KB
testcase_15 AC 91 ms
112,920 KB
testcase_16 AC 43 ms
65,256 KB
testcase_17 AC 66 ms
87,944 KB
testcase_18 AC 49 ms
70,276 KB
testcase_19 AC 120 ms
139,804 KB
testcase_20 AC 92 ms
123,320 KB
testcase_21 AC 125 ms
166,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
if n==m and len(set(a))==1:
	print(1,1)
else:
	print(len(set(a)),0)
0