結果

問題 No.1692 Expectations
ユーザー ysys
提出日時 2021-12-24 23:21:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 166,612 KB
最終ジャッジ日時 2024-09-19 22:34:37
合計ジャッジ時間 2,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,724 KB
testcase_01 AC 33 ms
51,948 KB
testcase_02 AC 35 ms
52,180 KB
testcase_03 AC 34 ms
52,624 KB
testcase_04 AC 33 ms
52,988 KB
testcase_05 AC 35 ms
52,328 KB
testcase_06 AC 33 ms
52,640 KB
testcase_07 AC 34 ms
52,900 KB
testcase_08 AC 35 ms
53,008 KB
testcase_09 AC 35 ms
51,940 KB
testcase_10 AC 70 ms
96,432 KB
testcase_11 AC 69 ms
96,800 KB
testcase_12 AC 34 ms
53,432 KB
testcase_13 AC 32 ms
52,672 KB
testcase_14 AC 40 ms
65,200 KB
testcase_15 AC 83 ms
113,340 KB
testcase_16 AC 40 ms
64,096 KB
testcase_17 AC 60 ms
87,636 KB
testcase_18 AC 45 ms
69,876 KB
testcase_19 AC 110 ms
140,148 KB
testcase_20 AC 85 ms
123,648 KB
testcase_21 AC 116 ms
166,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
ma = len(set(A))
mi = 0
if N == M and len(set(A)) == 1:
  mi += 1
print(ma, mi)
0