結果

問題 No.1972 Modulo Set
ユーザー nohakai3nohakai3
提出日時 2022-07-29 11:08:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,804 KB
最終ジャッジ日時 2024-07-19 02:36:13
合計ジャッジ時間 8,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 48 ms
13,088 KB
testcase_04 AC 61 ms
13,664 KB
testcase_05 AC 61 ms
14,428 KB
testcase_06 AC 83 ms
16,672 KB
testcase_07 AC 117 ms
19,760 KB
testcase_08 AC 65 ms
15,248 KB
testcase_09 AC 36 ms
11,136 KB
testcase_10 AC 58 ms
14,040 KB
testcase_11 AC 121 ms
19,400 KB
testcase_12 AC 45 ms
12,032 KB
testcase_13 AC 40 ms
11,648 KB
testcase_14 AC 42 ms
11,776 KB
testcase_15 AC 139 ms
18,732 KB
testcase_16 AC 167 ms
20,436 KB
testcase_17 AC 73 ms
14,608 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 146 ms
20,424 KB
testcase_20 AC 171 ms
20,548 KB
testcase_21 AC 79 ms
15,224 KB
testcase_22 AC 136 ms
19,716 KB
testcase_23 AC 354 ms
26,236 KB
testcase_24 AC 135 ms
18,724 KB
testcase_25 AC 191 ms
24,224 KB
testcase_26 AC 170 ms
21,964 KB
testcase_27 AC 311 ms
26,160 KB
testcase_28 AC 144 ms
18,728 KB
testcase_29 AC 207 ms
24,384 KB
testcase_30 AC 264 ms
25,548 KB
testcase_31 AC 39 ms
11,520 KB
testcase_32 AC 239 ms
24,568 KB
testcase_33 AC 351 ms
36,804 KB
testcase_34 AC 345 ms
36,756 KB
testcase_35 AC 358 ms
36,768 KB
testcase_36 AC 348 ms
36,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n,m=list(map(int,input().split()))
seq=list(map(int,input().split()))
cnt=0
am=defaultdict(int)

for i in range(len(seq)):
    sur=seq[i]%m
    am[sur]+=1
    am[m-sur]+=0

if am[0]>0:
    
    cnt+=1
    am[0]=0
if m%2==0:
    if am[int(m/2)]>0:
        cnt+=1
        am[int(m/2)]=0
        
    for i in am.keys():
        if i!=0:
            cnt+=max(am[i],am[m-i])
            am[i]=0
            am[m-i]=0

else:
    for i in am.keys():
        if i!=0:
            cnt+=max(am[i],am[m-i])
            am[i]=0
            am[m-i]=0
    
print(cnt)
0