結果

問題 No.1972 Modulo Set
ユーザー jensenjensen
提出日時 2022-06-28 18:59:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 409 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,416 KB
最終ジャッジ日時 2024-11-21 12:55:45
合計ジャッジ時間 6,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 45 ms
12,628 KB
testcase_04 AC 52 ms
13,660 KB
testcase_05 AC 56 ms
14,548 KB
testcase_06 AC 68 ms
16,724 KB
testcase_07 AC 88 ms
19,880 KB
testcase_08 AC 58 ms
15,372 KB
testcase_09 AC 35 ms
11,008 KB
testcase_10 AC 51 ms
13,964 KB
testcase_11 AC 87 ms
19,524 KB
testcase_12 AC 39 ms
11,904 KB
testcase_13 AC 50 ms
11,648 KB
testcase_14 AC 47 ms
11,648 KB
testcase_15 AC 93 ms
18,852 KB
testcase_16 AC 102 ms
18,868 KB
testcase_17 AC 55 ms
13,584 KB
testcase_18 AC 33 ms
10,752 KB
testcase_19 AC 97 ms
16,988 KB
testcase_20 AC 106 ms
18,724 KB
testcase_21 AC 60 ms
14,368 KB
testcase_22 AC 90 ms
16,024 KB
testcase_23 AC 307 ms
21,592 KB
testcase_24 AC 269 ms
19,224 KB
testcase_25 AC 335 ms
21,072 KB
testcase_26 AC 114 ms
21,612 KB
testcase_27 AC 396 ms
23,188 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 463 ms
25,332 KB
testcase_34 AC 450 ms
25,336 KB
testcase_35 AC 458 ms
25,412 KB
testcase_36 AC 460 ms
25,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=list(map(int,input().split()))
seq=list(map(int,input().split()))
cnt=0
am=[0]*m
for i in range(len(seq)):
    sur=seq[i]%m
    am[sur]+=1
    
if am[0]>0:
    cnt+=1
    
if m%2==0:
    if am[int(m/2)]>0:
        cnt+=1
    for i in range(1,int(len(am)/2)):
        cnt+=max(am[i],am[len(am)-i])
    
else:
    for i in range(1,int(len(am)/2)+1):
        cnt+=max(am[i],am[len(am)-i])
        
print(cnt)
0