結果

問題 No.1692 Expectations
ユーザー raven7959raven7959
提出日時 2021-10-04 21:13:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 134,316 KB
最終ジャッジ日時 2024-07-22 21:54:15
合計ジャッジ時間 2,727 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,620 KB
testcase_01 AC 38 ms
52,440 KB
testcase_02 AC 38 ms
52,752 KB
testcase_03 AC 38 ms
53,028 KB
testcase_04 AC 38 ms
52,936 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 39 ms
52,428 KB
testcase_07 AC 38 ms
52,324 KB
testcase_08 AC 39 ms
52,876 KB
testcase_09 AC 38 ms
52,304 KB
testcase_10 AC 76 ms
97,212 KB
testcase_11 AC 75 ms
96,608 KB
testcase_12 AC 38 ms
52,192 KB
testcase_13 AC 39 ms
52,332 KB
testcase_14 AC 46 ms
64,412 KB
testcase_15 AC 92 ms
113,536 KB
testcase_16 AC 45 ms
65,348 KB
testcase_17 AC 68 ms
88,052 KB
testcase_18 AC 50 ms
69,436 KB
testcase_19 AC 98 ms
120,956 KB
testcase_20 AC 93 ms
123,180 KB
testcase_21 AC 101 ms
134,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
AS=set(A)
if N==M:
  if len(AS)==1:
    print(1,1)
  else:
    print(len(AS),0)
else:
  print(len(AS),0)
0