結果

問題 No.1692 Expectations
ユーザー azekura_programazekura_program
提出日時 2021-10-01 21:26:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 127 bytes
コンパイル時間 1,022 ms
コンパイル使用メモリ 10,644 KB
実行使用メモリ 40,100 KB
最終ジャッジ日時 2023-09-26 16:24:50
合計ジャッジ時間 2,115 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,808 KB
testcase_01 AC 16 ms
7,808 KB
testcase_02 AC 15 ms
7,788 KB
testcase_03 AC 16 ms
7,808 KB
testcase_04 AC 15 ms
7,892 KB
testcase_05 AC 16 ms
7,788 KB
testcase_06 AC 16 ms
7,808 KB
testcase_07 AC 15 ms
7,824 KB
testcase_08 AC 16 ms
7,888 KB
testcase_09 AC 16 ms
7,804 KB
testcase_10 AC 66 ms
21,376 KB
testcase_11 AC 69 ms
22,048 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 22 ms
10,372 KB
testcase_15 AC 91 ms
29,056 KB
testcase_16 AC 22 ms
10,548 KB
testcase_17 AC 52 ms
18,908 KB
testcase_18 AC 31 ms
13,712 KB
testcase_19 AC 108 ms
31,532 KB
testcase_20 AC 76 ms
37,972 KB
testcase_21 AC 87 ms
40,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split()) 
A=map(int,input().split()) 
MIN=0
LEN=len(list(set(A)))
MAX=LEN
if LEN==1:
  MIN=1
print(MAX,MIN)
0