結果

問題 No.1692 Expectations
ユーザー first_vilfirst_vil
提出日時 2020-10-05 08:23:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,912 KB
最終ジャッジ日時 2024-07-19 09:36:51
合計ジャッジ時間 2,803 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 34 ms
52,480 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 35 ms
52,352 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 77 ms
97,408 KB
testcase_11 AC 76 ms
97,152 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 43 ms
63,360 KB
testcase_15 AC 75 ms
96,436 KB
testcase_16 AC 41 ms
63,488 KB
testcase_17 AC 57 ms
78,720 KB
testcase_18 AC 46 ms
67,584 KB
testcase_19 AC 81 ms
102,912 KB
testcase_20 AC 70 ms
96,512 KB
testcase_21 AC 77 ms
102,144 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 else 0)
main()
0