結果

問題 No.1692 Expectations
ユーザー shotoyooshotoyoo
提出日時 2021-10-01 21:26:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 135,092 KB
最終ジャッジ日時 2024-07-19 10:29:19
合計ジャッジ時間 2,197 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
51,456 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 36 ms
51,456 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 79 ms
101,120 KB
testcase_11 AC 76 ms
98,816 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 43 ms
64,896 KB
testcase_15 AC 91 ms
114,432 KB
testcase_16 AC 44 ms
64,640 KB
testcase_17 AC 66 ms
88,448 KB
testcase_18 AC 49 ms
71,040 KB
testcase_19 AC 99 ms
122,112 KB
testcase_20 AC 93 ms
124,032 KB
testcase_21 AC 99 ms
135,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,m = list(map(int, input().split()))
a = list(map(int, input().split()))
s = set(a)
mm = 0
MM = len(s)
count = [0]*m
if all((a[0]==a[i] for i in range(n))):
    mm = 1
print(MM, mm)
0