結果

問題 No.1692 Expectations
ユーザー chineristACchineristAC
提出日時 2021-10-01 21:31:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 136,576 KB
最終ジャッジ日時 2024-07-19 10:36:10
合計ジャッジ時間 3,395 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,888 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 45 ms
54,144 KB
testcase_03 AC 46 ms
54,144 KB
testcase_04 AC 46 ms
54,144 KB
testcase_05 AC 46 ms
54,528 KB
testcase_06 AC 46 ms
54,400 KB
testcase_07 AC 46 ms
54,016 KB
testcase_08 AC 46 ms
54,144 KB
testcase_09 AC 46 ms
53,760 KB
testcase_10 AC 96 ms
99,200 KB
testcase_11 AC 97 ms
99,200 KB
testcase_12 AC 46 ms
53,760 KB
testcase_13 AC 46 ms
53,760 KB
testcase_14 AC 58 ms
66,688 KB
testcase_15 AC 112 ms
115,456 KB
testcase_16 AC 58 ms
66,944 KB
testcase_17 AC 83 ms
90,368 KB
testcase_18 AC 64 ms
72,192 KB
testcase_19 AC 122 ms
123,392 KB
testcase_20 AC 113 ms
125,440 KB
testcase_21 AC 123 ms
136,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import radians
import sys,random

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()
A = li()

S = set()
for a in A:
    S.add(a)

if len(S)==1:
    if N+1 > M:
        print(len(S),1)
    else:
        print(len(S),0)
else:
    print(len(S),0)
0