結果
問題 | No.1972 Modulo Set |
ユーザー | Theta |
提出日時 | 2022-11-07 16:28:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 636 bytes |
コンパイル時間 | 270 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 23,492 KB |
最終ジャッジ日時 | 2024-07-21 00:04:38 |
合計ジャッジ時間 | 6,892 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
16,128 KB |
testcase_01 | AC | 28 ms
10,624 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | AC | 36 ms
13,000 KB |
testcase_04 | AC | 42 ms
14,032 KB |
testcase_05 | AC | 46 ms
14,420 KB |
testcase_06 | AC | 55 ms
16,540 KB |
testcase_07 | AC | 80 ms
19,872 KB |
testcase_08 | AC | 47 ms
15,232 KB |
testcase_09 | AC | 28 ms
11,008 KB |
testcase_10 | AC | 41 ms
14,020 KB |
testcase_11 | AC | 71 ms
19,388 KB |
testcase_12 | AC | 32 ms
12,160 KB |
testcase_13 | AC | 44 ms
11,264 KB |
testcase_14 | AC | 39 ms
11,392 KB |
testcase_15 | AC | 76 ms
18,720 KB |
testcase_16 | AC | 84 ms
18,728 KB |
testcase_17 | AC | 45 ms
14,724 KB |
testcase_18 | AC | 28 ms
10,624 KB |
testcase_19 | AC | 77 ms
17,704 KB |
testcase_20 | AC | 90 ms
20,536 KB |
testcase_21 | AC | 49 ms
15,464 KB |
testcase_22 | AC | 75 ms
17,020 KB |
testcase_23 | AC | 303 ms
20,996 KB |
testcase_24 | AC | 274 ms
16,564 KB |
testcase_25 | AC | 341 ms
20,324 KB |
testcase_26 | AC | 94 ms
21,948 KB |
testcase_27 | AC | 415 ms
21,200 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
from collections import Counter def main(): N, M = map(int, input().split()) set_ = list(map(int, input().split())) modulo_list = map(lambda num: num % M, set_) 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()