結果

問題 No.1692 Expectations
ユーザー first_vilfirst_vil
提出日時 2020-10-05 08:24:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 103,220 KB
最終ジャッジ日時 2024-07-19 09:37:01
合計ジャッジ時間 2,233 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,948 KB
testcase_01 AC 39 ms
52,468 KB
testcase_02 AC 35 ms
52,832 KB
testcase_03 AC 37 ms
53,376 KB
testcase_04 AC 39 ms
53,812 KB
testcase_05 AC 37 ms
52,532 KB
testcase_06 AC 36 ms
52,756 KB
testcase_07 AC 36 ms
52,304 KB
testcase_08 AC 35 ms
52,464 KB
testcase_09 AC 35 ms
53,468 KB
testcase_10 AC 74 ms
97,384 KB
testcase_11 AC 73 ms
99,124 KB
testcase_12 AC 38 ms
52,272 KB
testcase_13 AC 36 ms
53,492 KB
testcase_14 AC 43 ms
64,152 KB
testcase_15 AC 77 ms
97,852 KB
testcase_16 AC 43 ms
64,784 KB
testcase_17 AC 62 ms
78,968 KB
testcase_18 AC 52 ms
68,068 KB
testcase_19 AC 83 ms
103,220 KB
testcase_20 AC 75 ms
97,912 KB
testcase_21 AC 80 ms
102,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input=sys.stdin.readline
    n,m=map(int,input().split())
    c=[0]*(m+1)
    ans=0
    for a in list(map(int,input().split())):
        if c[a]==0:
            ans+=1
        c[a]+=1
    print(ans,1 if ans==1 and n==m else 0)
main()
0