Advertisement
yeskendir_sultanov

Количество троек

May 18th, 2024
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.41 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2. #define ll long long
  3. #define pb push_back
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8.     int l1, r1, l2, r2, l3, r3;
  9.     cin >> l1 >> r1 >> l2 >> r2 >> l3 >> r3;
  10.    
  11.     const int maxn = 2e6 + 3;
  12.    
  13.     ll cnt[maxn] = {};
  14.    
  15.     // l1 <= i <= r1   =>  l2 <= j <= r2    l3 <= k <= r3,   k % j == 0  && j % i == 0
  16.    
  17.     for (int i = l1; i <= r1; ++i) {
  18.         for (int j = i; j < maxn; j += i) {
  19.             cnt[j]++;
  20.         }
  21.     }
  22.    
  23.     ll ans = 0;
  24.    
  25.     for (int j = l2; j <= r2; ++j) {
  26.         ans += cnt[j] * (r3 / j - (l3 - 1) / j);
  27.     }
  28.  
  29.     cout << ans;    
  30.     return 0;
  31. }
  32.  
  33.  
  34. /*
  35. 2 6
  36. 1 8
  37. 8 10
  38.  
  39.  
  40.  
  41. l1 = 2, r1 = 6
  42. i = 3
  43. j = 3; += 3
  44.  
  45. i = 2 => 2, 4,  6,  8
  46. i = 3 => 3, 6
  47. i = 4 => 4, 8
  48. i = 5 => 5
  49. i = 6 => 6
  50.  
  51.  
  52. cnt[0] = 0
  53. cnt[1] = 0
  54. cnt[2] = 1
  55. cnt[3] = 1
  56. cnt[4] = 2
  57. cnt[5] = 1
  58. cnt[6] = 3
  59. cnt[7] = 0
  60. cnt[8] = 2
  61.  
  62. l2 = 1; r2 = 8
  63. j = 1 => cnt[1] * (10 / 1 - (8 - 1) / 1) = 0
  64. j = 2 => cnt[2] * (10 / 2 - (8 - 1) / 2) = 1 * 2 = 2 =>  (2;2;8), (2;2;10)
  65. j = 3 => cnt[3] * (10 / 3 - (8 - 1) / 3) = 1 * 1 = 1 =>  (3;3;9)
  66. j = 4 => cnt[4] * (10 / 4 - (8 - 1) / 4) = 2 * 1 = 2 => (2;4;8), (4;4;8)
  67. j = 5 => cnt[5] * (10 / 5 - (8 - 1) / 5) = 1 * 1 = 1 => (5;5;10)
  68. j = 6 => cnt[6] * (10 / 6 - (8 - 1) / 6) = 3 * 0 = 0
  69. j = 7 => cnt[7] * (10 / 7 - (8 - 1) / 7) = 0 * 0 = 0
  70. j = 8 => cnt[8] * (10 / 8 - (8 - 1) / 8) = 2 * 1 = 2 =>  (2;8;8), (4;8;8)
  71. */
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement