結果
問題 | No.2425 Power Range GCD |
ユーザー | nono00 |
提出日時 | 2023-08-18 21:19:58 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 746 bytes |
コンパイル時間 | 3,313 ms |
コンパイル使用メモリ | 247,700 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-28 05:24:56 |
合計ジャッジ時間 | 3,302 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <bits/stdc++.h> namespace nono { std::vector<std::pair<int, int>> factorize(int n) { std::vector<std::pair<int, int>> result; for (long long i = 2; i * i <= n; i++) { int count = 0; while (n % i == 0) { n /= i; count++; } if (count > 0) { result.emplace_back(i, count); } } if (n != 1) { result.emplace_back(n, 1); } return result; } void solve() { int l, r; std::cin >> l >> r; std::cout << 1 << std::endl; } } // namespace nono int main() { std::cin.tie(0)->sync_with_stdio(0); std::cout << std::fixed << std::setprecision(15); int t = 1; // std::cin >> t; while (t--) nono::solve(); }