結果

問題 No.1692 Expectations
ユーザー roarisroaris
提出日時 2021-10-01 21:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 135,424 KB
最終ジャッジ日時 2024-07-19 10:31:33
合計ジャッジ時間 2,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 39 ms
53,760 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 39 ms
53,540 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 AC 40 ms
53,760 KB
testcase_09 AC 40 ms
53,632 KB
testcase_10 AC 90 ms
102,528 KB
testcase_11 AC 76 ms
98,304 KB
testcase_12 AC 39 ms
53,632 KB
testcase_13 AC 40 ms
53,888 KB
testcase_14 AC 46 ms
65,408 KB
testcase_15 AC 92 ms
113,024 KB
testcase_16 AC 45 ms
65,664 KB
testcase_17 AC 68 ms
88,576 KB
testcase_18 AC 52 ms
71,040 KB
testcase_19 AC 102 ms
122,112 KB
testcase_20 AC 94 ms
122,880 KB
testcase_21 AC 105 ms
135,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

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

if N==M and A==[A[0]]*N:
    m = 1
else:
    m = 0

print(len(set(A)), m)
0