結果

問題 No.1972 Modulo Set
ユーザー tonyu0tonyu0
提出日時 2022-06-10 23:42:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,524 KB
最終ジャッジ日時 2024-10-05 01:39:53
合計ジャッジ時間 6,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 45 ms
12,748 KB
testcase_04 AC 52 ms
13,780 KB
testcase_05 AC 56 ms
14,288 KB
testcase_06 AC 72 ms
16,284 KB
testcase_07 AC 96 ms
20,096 KB
testcase_08 AC 55 ms
14,664 KB
testcase_09 AC 31 ms
11,008 KB
testcase_10 AC 50 ms
13,896 KB
testcase_11 AC 100 ms
19,516 KB
testcase_12 AC 40 ms
12,032 KB
testcase_13 AC 43 ms
11,648 KB
testcase_14 AC 44 ms
11,520 KB
testcase_15 AC 125 ms
19,200 KB
testcase_16 AC 157 ms
20,392 KB
testcase_17 AC 67 ms
14,724 KB
testcase_18 AC 26 ms
10,624 KB
testcase_19 AC 137 ms
19,532 KB
testcase_20 AC 162 ms
19,956 KB
testcase_21 AC 74 ms
15,212 KB
testcase_22 AC 128 ms
19,596 KB
testcase_23 AC 278 ms
24,468 KB
testcase_24 AC 127 ms
18,596 KB
testcase_25 AC 182 ms
24,092 KB
testcase_26 AC 154 ms
21,972 KB
testcase_27 AC 307 ms
24,600 KB
testcase_28 AC 138 ms
18,512 KB
testcase_29 AC 199 ms
24,240 KB
testcase_30 AC 262 ms
24,640 KB
testcase_31 AC 38 ms
11,392 KB
testcase_32 AC 233 ms
24,552 KB
testcase_33 AC 343 ms
34,304 KB
testcase_34 AC 341 ms
34,524 KB
testcase_35 AC 326 ms
34,424 KB
testcase_36 AC 336 ms
34,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,m=map(int,input().split())
a=list(map(lambda x : int(x) % m,input().split()))
d=defaultdict(int)
for b in a:
    d[b]+=1
    d[m-b]
ans=0
zero=0
onaji=0
for k in d.keys():
    if k==0:
        zero=1
    elif k+k==m:
        onaji=1
    else:
        ans+=max(d[k],d[m-k])
    d[k]=0
    d[m-k]=0
print(ans+zero+onaji)
0