fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. typedef unsigned long long ull;
  4.  
  5. int main() {
  6. ios::sync_with_stdio(false);
  7. cin.tie(nullptr);
  8.  
  9. // قائمة عوامل أولية كبيرة مختلفة للتيستات
  10. vector<vector<ull>> all_primes = {
  11. {999983, 999979, 999961},
  12. {999979, 999959, 999953},
  13. {999959, 999931, 999917},
  14. {999983, 999959, 999931},
  15. {999961, 999953, 999929},
  16. {999979, 999961, 999917},
  17. {999983, 999953, 999911},
  18. {999979, 999959, 999911},
  19. {999983, 999971, 999961},
  20. {999971, 999959, 999949},
  21. {999961, 999931, 999917},
  22. {999983, 999979, 999949},
  23. {999971, 999953, 999917},
  24. {999967, 999961, 999929},
  25. {999979, 999971, 999953},
  26. {999967, 999953, 999941},
  27. {999983, 999967, 999959},
  28. {999973, 999961, 999943},
  29. {999967, 999959, 999929},
  30. {999973, 999967, 999961},
  31. {999971, 999967, 999953},
  32. {999961, 999953, 999929},
  33. {999983, 999971, 999943},
  34. {999967, 999961, 999937},
  35. {999979, 999967, 999949},
  36. {999971, 999959, 999937},
  37. {999967, 999953, 999931}
  38. };
  39.  
  40. for (int t = 0; t < 27; t++) {
  41. ull n = 1;
  42. for (auto p : all_primes[t]) {
  43. n *= p;
  44. }
  45. cout << n << "\n";
  46. }
  47.  
  48. return 0;
  49. }
  50.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
999923001838986077
999891003774959533
999807011958765193
999873004698951907
999843007938869857
999857005798932023
999847006494928889
999849006378923371
999915002286980773
999879004758939361
999809011654776647
999911002294981793
999841007670886871
999857006398908623
999903002958971377
999861006270908491
999909002610976999
999877004814939979
999855006606903937
999901003230965251
999891003870955021
999843007938869857
999897003114971899
999865005822918919
999895003446964657
999867005598925093
999851007070892981