結果

問題 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
コンパイル時間 497 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 39,576 KB
最終ジャッジ日時 2024-07-19 10:30:53
合計ジャッジ時間 2,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 27 ms
10,496 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 80 ms
21,152 KB
testcase_11 AC 79 ms
21,880 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 32 ms
12,544 KB
testcase_15 AC 93 ms
28,844 KB
testcase_16 AC 33 ms
12,416 KB
testcase_17 AC 59 ms
19,992 KB
testcase_18 AC 40 ms
15,792 KB
testcase_19 AC 109 ms
30,948 KB
testcase_20 AC 91 ms
37,716 KB
testcase_21 AC 98 ms
39,576 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