結果

問題 No.1692 Expectations
ユーザー gr1msl3ygr1msl3y
提出日時 2021-10-01 21:23:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 142 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 133,120 KB
最終ジャッジ日時 2024-07-19 10:22:53
合計ジャッジ時間 2,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 36 ms
51,456 KB
testcase_08 WA -
testcase_09 AC 39 ms
51,584 KB
testcase_10 WA -
testcase_11 AC 77 ms
95,744 KB
testcase_12 AC 38 ms
51,328 KB
testcase_13 AC 36 ms
51,584 KB
testcase_14 AC 46 ms
63,360 KB
testcase_15 AC 96 ms
112,128 KB
testcase_16 AC 46 ms
63,360 KB
testcase_17 AC 70 ms
87,168 KB
testcase_18 AC 52 ms
68,992 KB
testcase_19 AC 103 ms
120,192 KB
testcase_20 AC 98 ms
122,624 KB
testcase_21 AC 110 ms
133,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

a = len(set(A))
b = 0
if len(A) == 1 and N == M:
    b = 1

print(a, b)
0