結果

問題 No.1972 Modulo Set
ユーザー ニックネームニックネーム
提出日時 2022-06-10 21:41:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 217 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,872 KB
最終ジャッジ日時 2024-09-21 06:06:46
合計ジャッジ時間 6,315 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 40 ms
12,160 KB
testcase_04 AC 46 ms
13,064 KB
testcase_05 AC 51 ms
13,652 KB
testcase_06 AC 64 ms
15,052 KB
testcase_07 AC 78 ms
17,752 KB
testcase_08 AC 53 ms
14,080 KB
testcase_09 AC 33 ms
11,008 KB
testcase_10 AC 47 ms
13,200 KB
testcase_11 AC 77 ms
17,340 KB
testcase_12 AC 38 ms
11,648 KB
testcase_13 AC 51 ms
11,392 KB
testcase_14 AC 47 ms
11,520 KB
testcase_15 AC 85 ms
17,220 KB
testcase_16 AC 94 ms
17,408 KB
testcase_17 AC 50 ms
13,024 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 89 ms
16,004 KB
testcase_20 AC 99 ms
17,256 KB
testcase_21 AC 55 ms
13,640 KB
testcase_22 AC 84 ms
15,296 KB
testcase_23 AC 321 ms
22,728 KB
testcase_24 AC 274 ms
18,372 KB
testcase_25 AC 326 ms
20,752 KB
testcase_26 AC 102 ms
19,252 KB
testcase_27 AC 407 ms
24,920 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 465 ms
26,744 KB
testcase_34 AC 455 ms
26,872 KB
testcase_35 AC 456 ms
26,744 KB
testcase_36 AC 472 ms
26,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
cnt = [0]*m
for v in map(int, input().split()): cnt[v%m] += 1
ans = 0
for i in range(m//2+1):
    if i*2%m == 0: ans += min(cnt[i], 1)
    else: ans += max(cnt[i], cnt[m-i])
print(ans)
0