結果

問題 No.1692 Expectations
ユーザー yosakayosaka
提出日時 2022-01-19 20:23:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 104 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 10,672 KB
実行使用メモリ 32,024 KB
最終ジャッジ日時 2023-08-15 08:06:15
合計ジャッジ時間 2,023 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,896 KB
testcase_01 AC 15 ms
7,888 KB
testcase_02 AC 15 ms
7,976 KB
testcase_03 AC 16 ms
7,904 KB
testcase_04 AC 15 ms
7,920 KB
testcase_05 AC 16 ms
7,784 KB
testcase_06 AC 16 ms
7,816 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 15 ms
7,832 KB
testcase_10 WA -
testcase_11 AC 73 ms
29,252 KB
testcase_12 AC 15 ms
7,860 KB
testcase_13 AC 15 ms
7,852 KB
testcase_14 AC 22 ms
10,464 KB
testcase_15 AC 82 ms
26,204 KB
testcase_16 AC 21 ms
10,592 KB
testcase_17 AC 47 ms
17,216 KB
testcase_18 AC 30 ms
14,264 KB
testcase_19 AC 97 ms
29,996 KB
testcase_20 AC 74 ms
30,856 KB
testcase_21 AC 84 ms
32,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(vmax, 0)
0