結果

問題 No.1692 Expectations
ユーザー chineristACchineristAC
提出日時 2021-10-01 21:26:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 135,808 KB
最終ジャッジ日時 2024-07-19 10:31:30
合計ジャッジ時間 2,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,376 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 41 ms
53,760 KB
testcase_03 AC 42 ms
54,016 KB
testcase_04 AC 40 ms
53,504 KB
testcase_05 AC 47 ms
53,632 KB
testcase_06 AC 41 ms
53,760 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 WA -
testcase_09 AC 41 ms
53,632 KB
testcase_10 WA -
testcase_11 AC 87 ms
99,072 KB
testcase_12 AC 42 ms
53,248 KB
testcase_13 AC 43 ms
53,504 KB
testcase_14 AC 54 ms
66,304 KB
testcase_15 AC 103 ms
115,072 KB
testcase_16 AC 56 ms
66,560 KB
testcase_17 AC 78 ms
89,984 KB
testcase_18 AC 58 ms
71,936 KB
testcase_19 AC 119 ms
123,136 KB
testcase_20 AC 112 ms
124,928 KB
testcase_21 AC 121 ms
135,808 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 M==1:
    print(len(S),1)
else:
    print(len(S),0)
0