結果

問題 No.1972 Modulo Set
ユーザー ThetaTheta
提出日時 2022-11-07 16:29:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 609 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,356 KB
最終ジャッジ日時 2024-07-21 00:05:14
合計ジャッジ時間 6,890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,384 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 37 ms
12,428 KB
testcase_04 AC 40 ms
12,884 KB
testcase_05 AC 45 ms
13,448 KB
testcase_06 AC 59 ms
15,124 KB
testcase_07 AC 72 ms
17,472 KB
testcase_08 AC 46 ms
13,980 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 42 ms
12,956 KB
testcase_11 AC 77 ms
17,172 KB
testcase_12 AC 34 ms
11,648 KB
testcase_13 AC 45 ms
11,264 KB
testcase_14 AC 41 ms
11,392 KB
testcase_15 AC 77 ms
19,232 KB
testcase_16 AC 87 ms
19,632 KB
testcase_17 AC 46 ms
13,956 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 78 ms
18,252 KB
testcase_20 AC 90 ms
22,176 KB
testcase_21 AC 49 ms
14,572 KB
testcase_22 AC 76 ms
17,684 KB
testcase_23 AC 320 ms
23,036 KB
testcase_24 AC 281 ms
15,928 KB
testcase_25 AC 333 ms
20,492 KB
testcase_26 AC 92 ms
21,440 KB
testcase_27 AC 412 ms
23,356 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def main():
    N, M = map(int, input().split())
    modulo_list = map(lambda num: int(num) % M, input().split())

    modulo_counter = Counter(modulo_list)

    element_sum = 0

    if modulo_counter[0] > 0:
        element_sum += 1
    if M % 2 == 0 and modulo_counter[M // 2] > 0:
        element_sum += 1

    for num in range(1, (M+1)//2):
        if modulo_counter[num] > modulo_counter[M-num]:
            element_sum += modulo_counter[num]
        else:
            element_sum += modulo_counter[M-num]

    print(element_sum)


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