結果

問題 No.1692 Expectations
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-21 15:51:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 110 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 133,444 KB
最終ジャッジ日時 2024-10-21 15:51:23
合計ジャッジ時間 3,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,284 KB
testcase_01 AC 35 ms
51,828 KB
testcase_02 AC 36 ms
52,160 KB
testcase_03 AC 39 ms
54,024 KB
testcase_04 AC 36 ms
52,148 KB
testcase_05 AC 35 ms
52,624 KB
testcase_06 AC 36 ms
53,548 KB
testcase_07 AC 37 ms
52,292 KB
testcase_08 WA -
testcase_09 AC 36 ms
52,224 KB
testcase_10 WA -
testcase_11 AC 74 ms
96,520 KB
testcase_12 AC 36 ms
53,540 KB
testcase_13 AC 37 ms
52,148 KB
testcase_14 AC 48 ms
64,392 KB
testcase_15 AC 89 ms
112,908 KB
testcase_16 AC 43 ms
64,376 KB
testcase_17 AC 66 ms
88,636 KB
testcase_18 AC 49 ms
70,056 KB
testcase_19 AC 98 ms
120,704 KB
testcase_20 AC 93 ms
123,168 KB
testcase_21 AC 100 ms
133,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
if m==1:
	print(1,1)
else:
	print(len(set(a)),0)
0