結果

問題 No.1692 Expectations
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-01 21:21:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 109 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 86,924 KB
実行使用メモリ 137,528 KB
最終ジャッジ日時 2023-09-26 16:14:56
合計ジャッジ時間 3,452 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,048 KB
testcase_01 AC 74 ms
70,996 KB
testcase_02 AC 74 ms
71,444 KB
testcase_03 AC 72 ms
71,240 KB
testcase_04 AC 74 ms
71,252 KB
testcase_05 AC 74 ms
71,048 KB
testcase_06 AC 74 ms
71,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 73 ms
71,080 KB
testcase_10 WA -
testcase_11 AC 109 ms
102,472 KB
testcase_12 AC 73 ms
71,304 KB
testcase_13 AC 71 ms
71,044 KB
testcase_14 AC 79 ms
77,276 KB
testcase_15 AC 124 ms
118,428 KB
testcase_16 AC 79 ms
77,732 KB
testcase_17 AC 101 ms
97,504 KB
testcase_18 AC 84 ms
82,076 KB
testcase_19 AC 130 ms
124,524 KB
testcase_20 AC 126 ms
128,204 KB
testcase_21 AC 135 ms
137,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
S = set(A)
M = len(S)
m = 0
print(M, m)
0