結果
問題 | No.1006 Share an Integer |
ユーザー | snrnsidy |
提出日時 | 2021-06-01 07:33:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,753 bytes |
コンパイル時間 | 2,317 ms |
コンパイル使用メモリ | 202,796 KB |
実行使用メモリ | 31,488 KB |
最終ジャッジ日時 | 2024-11-09 00:08:09 |
合計ジャッジ時間 | 8,779 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; long long int d[2000005]; vector <long long int> prime; int main(void) { cin.tie(0); ios::sync_with_stdio(false); bool isprime[2000005]; memset(isprime, true, sizeof(isprime)); long long int X; cin >> X; for (int i = 2; i <= 1415; i++) { if (isprime[i]) { prime.push_back(i); for (int j = 2 * i; j <= 2000000; j += i) { isprime[j] = false; } } } for (int i = 1; i <= 2000000; i++) { long long int num = 1; long long int temp = i; for (int j = 0; j < prime.size(); j++) { if (temp == 1) { break; } if (temp % prime[j] == 0) { int cnt = 0; while (1) { if (temp % prime[j] != 0) { break; } temp /= prime[j]; cnt++; } num *= (cnt + 1); } } if (temp != 1) { num *= 2; } d[i] = num; } long long int MIN = 1e18; for (long long int A = 1; A < X; A++) { long long int B = X - A; long long int FA = A - d[A]; long long int FB = B - d[B]; MIN = min(MIN, abs(FA - FB)); } for (long long int A = 1; A < X; A++) { long long int B = X - A; long long int FA = A - d[A]; long long int FB = B - d[B]; if (MIN == abs(FA - FB)) { cout << A << ' ' << B << '\n'; } } return 0; }