結果
問題 | No.1022 Power Equation |
ユーザー | cn_449 |
提出日時 | 2020-04-10 22:07:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 141 ms / 2,000 ms |
コード長 | 1,654 bytes |
コンパイル時間 | 1,111 ms |
コンパイル使用メモリ | 101,000 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 20:31:57 |
合計ジャッジ時間 | 2,074 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 8 ms
5,376 KB |
testcase_04 | AC | 102 ms
5,376 KB |
testcase_05 | AC | 141 ms
5,376 KB |
testcase_06 | AC | 138 ms
5,376 KB |
testcase_07 | AC | 139 ms
5,376 KB |
testcase_08 | AC | 74 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <string> #include <queue> #include <stack> #include <set> #include <map> #include <iomanip> #include <utility> #include <tuple> #include <functional> #include <bitset> #include <cassert> #include <complex> #include <stdio.h> #include <time.h> #include <numeric> #define int long long #define all(a) a.begin(),a.end() #define rep(i, n) for (ll i = 0; i < (n); i++) #define pb push_back using namespace std; typedef long long ll; typedef pair<ll, ll> P; typedef long double ld; typedef complex<ld> com; constexpr ll INF = 1000000000000000000; constexpr ld EPS = 1e-12; constexpr ld PI = 3.141592653589793238; template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; } template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; } ll gcd(ll n, ll m) { return (m ? gcd(m, n%m) : n); } signed main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); int t; cin >> t; vector<bool> ok(40000); vector<int> use; for (int i = 2; i < 40000; i++) { if (!ok[i]) { use.pb(i); int st = i; while (st*i < 40000) { st *= i; ok[st] = true; } } } rep (_, t) { int n; cin >> n; ll ans = 2 * n * n - n; for (int i : use) { if (i > n) break; int cnt = 0; int ch = 1; while (ch * i <= n) { cnt++; ch *= i; } for (int j = 1; j <= cnt; j++) { for (int k = 1; k <= cnt; k++) { if (j == k) continue; ans += n / (max(j, k) / gcd(j, k)); } } } cout << ans << endl; } }