K.2018
目录
警告
本文最后更新于 2023-07-07,文中内容可能已过时。
K. 2018
Given a,b,c,d, find out the number of pairs of integers (x,y) where a ≤ x ≤ b,c ≤ y ≤ d and x·y is a multiple of 2018.
Input
The input consists of several test cases and is terminated by end-of-file.
Each test case contains four integers a,b,c,d.
Output
For each test case, print an integer which denotes the result.
Constraint
• 1≤ a ≤ b ≤109,1≤ c ≤ d ≤109
• The number of tests cases does not exceed 104.
Sample Input
1 2 1 2018
1 2018 1 2018
1 1000000000 1 1000000000
Sample Output
3
6051
1485883320325200
题意:给定区间 [a,b]、[c,d],问有多少对有序数组 (x,y)(x∈[a,b],y∈[c,d]) 使得 xy 是 2018 的倍数
思路:2018=21009(分解质因数),则对 x 分类讨论:1) 仅为 2 的倍数;2)仅为 1009 的倍数;3)即为 2 又为 1009 的倍数;4)既不为 2 又不为 1009 的倍数
等价于如下分类讨论:
- 若 x 是偶数:1)若 x 是 1009 的倍数,则 y 可为 [c,d] 中任意数; 2)若 x 不是 1009 的倍数,则 y 必定为 [c,d] 中 1009 的倍数
- 若 x 是奇数:1)若 x 是 1009 的倍数,则 y 必定为 [c,d] 中 2 的倍数; 2)若 x 不是 1009 的倍数,则 y 必定为 [c,d] 中 2018 的倍数
后 AC 代码
|
|
Buy me a coffee~
支付宝
微信