結果

問題 No.1692 Expectations
ユーザー harapecoharapeco
提出日時 2022-03-16 15:15:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 135,372 KB
最終ジャッジ日時 2024-09-24 15:23:50
合計ジャッジ時間 3,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,484 KB
testcase_01 AC 33 ms
52,960 KB
testcase_02 AC 34 ms
53,060 KB
testcase_03 AC 34 ms
52,344 KB
testcase_04 AC 34 ms
53,620 KB
testcase_05 AC 35 ms
52,768 KB
testcase_06 AC 38 ms
52,212 KB
testcase_07 AC 34 ms
52,964 KB
testcase_08 WA -
testcase_09 AC 34 ms
51,940 KB
testcase_10 WA -
testcase_11 AC 74 ms
97,440 KB
testcase_12 WA -
testcase_13 AC 35 ms
52,344 KB
testcase_14 AC 43 ms
65,812 KB
testcase_15 AC 91 ms
114,280 KB
testcase_16 AC 43 ms
65,732 KB
testcase_17 AC 65 ms
88,624 KB
testcase_18 AC 48 ms
71,900 KB
testcase_19 AC 99 ms
122,064 KB
testcase_20 AC 93 ms
123,792 KB
testcase_21 AC 104 ms
135,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))

max,min = 0,0
ans = set()

for i in A:
    if i <= M:
        ans.add(i)
if len(ans) == 1 and N <= 1:
    min = 1
max = len(ans)
print(max,min)
0