結果

問題 No.1692 Expectations
ユーザー ogamiogami
提出日時 2021-10-01 21:27:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 1,087 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 126,336 KB
最終ジャッジ日時 2024-07-19 10:32:31
合計ジャッジ時間 2,520 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 49 ms
54,144 KB
testcase_02 AC 50 ms
54,016 KB
testcase_03 AC 50 ms
54,528 KB
testcase_04 AC 47 ms
54,016 KB
testcase_05 AC 45 ms
54,784 KB
testcase_06 AC 45 ms
54,400 KB
testcase_07 AC 43 ms
54,400 KB
testcase_08 AC 44 ms
54,144 KB
testcase_09 AC 44 ms
54,272 KB
testcase_10 AC 86 ms
97,408 KB
testcase_11 AC 85 ms
97,280 KB
testcase_12 AC 46 ms
54,144 KB
testcase_13 AC 43 ms
54,144 KB
testcase_14 AC 52 ms
66,048 KB
testcase_15 AC 103 ms
115,584 KB
testcase_16 AC 54 ms
66,816 KB
testcase_17 AC 77 ms
90,624 KB
testcase_18 AC 59 ms
71,936 KB
testcase_19 AC 104 ms
104,960 KB
testcase_20 AC 105 ms
126,336 KB
testcase_21 AC 107 ms
112,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline
    sys.setrecursionlimit(10**7)
    from collections import Counter, deque
    from collections import defaultdict
    from itertools import combinations, permutations, accumulate, groupby, product
    from bisect import bisect_left,bisect_right
    from heapq import heapify, heappop, heappush
    from math import floor, ceil,pi,factorial,gcd,atan,degrees,sqrt
    from operator import itemgetter
    def I(): return int(input())
    def MI(): return map(int, input().split())
    def LI(): return list(map(int, input().split()))
    def SI(): return input().rstrip()
    def printns(x): print('\n'.join(x))
    def printni(x): print('\n'.join(list(map(str,x))))
    def myceil(a,b):
        return (-(-a//b))
    inf = 10**17
    mod = 10**9 + 7
    #mod =998244353

    n,m = MI()
    lis = LI()
    lis = list(set(lis))
    x = len(lis)
    if x==1 and m==n:
        print(x,1)
    else:
        print(x,0)



        
if __name__=="__main__":
    main()




































































0