結果

問題 No.1692 Expectations
ユーザー shinichishinichi
提出日時 2021-10-01 23:42:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 132,992 KB
最終ジャッジ日時 2024-07-19 16:53:20
合計ジャッジ時間 2,387 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,328 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
52,480 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 75 ms
96,128 KB
testcase_11 AC 75 ms
95,872 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 45 ms
63,488 KB
testcase_15 AC 91 ms
112,128 KB
testcase_16 AC 45 ms
63,744 KB
testcase_17 AC 72 ms
87,040 KB
testcase_18 AC 50 ms
69,248 KB
testcase_19 AC 103 ms
120,064 KB
testcase_20 AC 95 ms
122,496 KB
testcase_21 AC 100 ms
132,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

max, min = len(set(A)), 0

if max == 1:
    min = 1
print(max, min)
0