結果

問題 No.1692 Expectations
ユーザー weakenweaken
提出日時 2021-10-03 12:16:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 10,672 KB
実行使用メモリ 43,712 KB
最終ジャッジ日時 2023-09-28 11:30:59
合計ジャッジ時間 2,514 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,820 KB
testcase_01 AC 16 ms
7,804 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 16 ms
7,856 KB
testcase_10 WA -
testcase_11 AC 89 ms
26,656 KB
testcase_12 WA -
testcase_13 AC 16 ms
7,804 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 158 ms
36,104 KB
testcase_20 WA -
testcase_21 AC 119 ms
43,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n, _ = map(int, input().split())
    a = set(map(int, input().split()))

    target = set()
    for i in range(1, n + 1):
        target.add(i)

    ans = 0

    for ai in a:
        if ai in target:
            ans += 1
    print(ans, 0)


if __name__ == "__main__":
    main()
0