結果

問題 No.1692 Expectations
ユーザー gr1msl3ygr1msl3y
提出日時 2021-10-01 21:23:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 142 bytes
コンパイル時間 1,223 ms
コンパイル使用メモリ 86,708 KB
実行使用メモリ 137,376 KB
最終ジャッジ日時 2023-09-26 16:17:14
合計ジャッジ時間 3,749 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
70,968 KB
testcase_01 AC 77 ms
71,068 KB
testcase_02 AC 76 ms
71,164 KB
testcase_03 AC 77 ms
71,308 KB
testcase_04 AC 76 ms
71,160 KB
testcase_05 AC 76 ms
70,820 KB
testcase_06 AC 75 ms
71,116 KB
testcase_07 AC 77 ms
70,852 KB
testcase_08 WA -
testcase_09 AC 75 ms
71,304 KB
testcase_10 WA -
testcase_11 AC 114 ms
102,380 KB
testcase_12 AC 76 ms
71,236 KB
testcase_13 AC 76 ms
71,056 KB
testcase_14 AC 81 ms
77,176 KB
testcase_15 AC 132 ms
118,388 KB
testcase_16 AC 82 ms
77,420 KB
testcase_17 AC 107 ms
97,440 KB
testcase_18 AC 87 ms
81,964 KB
testcase_19 AC 140 ms
124,256 KB
testcase_20 AC 132 ms
128,068 KB
testcase_21 AC 145 ms
137,376 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