結果
問題 | No.1972 Modulo Set |
ユーザー |
![]() |
提出日時 | 2025-03-31 17:36:25 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 144 ms / 2,000 ms |
コード長 | 1,169 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 82,168 KB |
実行使用メモリ | 122,412 KB |
最終ジャッジ日時 | 2025-03-31 17:36:55 |
合計ジャッジ時間 | 5,042 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 34 |
ソースコード
import sysfrom collections import defaultdictdef main():input = sys.stdin.read().split()idx = 0N = int(input[idx])idx += 1M = int(input[idx])idx += 1A = list(map(int, input[idx:idx+N]))idx += Nfreq = defaultdict(int)for num in A:r = num % Mfreq[r] += 1processed = set()ans = 0# Handle residue 0if 0 in freq:ans += 1processed.add(0)# Process other residuesfor r in list(freq.keys()):if r in processed:continueif r == 0:continues = (M - r) % Mif r == s:# Self-complementary, e.g., M even and r = M/2ans += 1processed.add(r)elif s in freq:# Take the maximum of the two residuesans += max(freq[r], freq[s])processed.add(r)processed.add(s)else:# Check if 2*r is a multiple of Mif (2 * r) % M == 0:ans += 1else:ans += freq[r]processed.add(r)print(ans)if __name__ == "__main__":main()