結果
問題 | No.1006 Share an Integer |
ユーザー | はまやんはまやん |
提出日時 | 2020-03-06 21:49:16 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 260 ms / 2,000 ms |
コード長 | 1,979 bytes |
コンパイル時間 | 1,979 ms |
コンパイル使用メモリ | 194,368 KB |
最終ジャッジ日時 | 2025-01-09 05:00:07 |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
100,168 KB |
testcase_01 | AC | 37 ms
100,164 KB |
testcase_02 | AC | 39 ms
99,912 KB |
testcase_03 | AC | 39 ms
99,916 KB |
testcase_04 | AC | 37 ms
100,044 KB |
testcase_05 | AC | 39 ms
100,172 KB |
testcase_06 | AC | 36 ms
100,168 KB |
testcase_07 | AC | 37 ms
100,172 KB |
testcase_08 | AC | 37 ms
99,916 KB |
testcase_09 | AC | 38 ms
99,916 KB |
testcase_10 | AC | 39 ms
100,164 KB |
testcase_11 | AC | 147 ms
109,800 KB |
testcase_12 | AC | 246 ms
113,608 KB |
testcase_13 | AC | 260 ms
113,824 KB |
testcase_14 | AC | 260 ms
113,824 KB |
testcase_15 | AC | 219 ms
113,152 KB |
testcase_16 | AC | 117 ms
105,548 KB |
testcase_17 | AC | 150 ms
108,696 KB |
testcase_18 | AC | 230 ms
113,480 KB |
testcase_19 | AC | 209 ms
113,124 KB |
testcase_20 | AC | 235 ms
112,704 KB |
testcase_21 | AC | 260 ms
113,812 KB |
ソースコード
#include<bits/stdc++.h>#define rep(i,a,b) for(int i=a;i<b;i++)#define rrep(i,a,b) for(int i=a;i>=b;i--)#define fore(i,a) for(auto &i:a)#define all(x) (x).begin(),(x).end()//#pragma GCC optimize ("-O3")using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }//---------------------------------------------------------------------------------------------------/*---------------------------------------------------------------------------------------------------∧_∧∧_∧ (´<_` ) Welcome to My Coding Space!( ´_ゝ`) / ⌒i @hamayanhamayan0/ \ | |/ / ̄ ̄ ̄ ̄/ |__(__ニつ/ _/ .| .|____\/____/ (u ⊃---------------------------------------------------------------------------------------------------*/int X;int rest[2010101];map<int, int> ep[2010101];int d[2010101];//---------------------------------------------------------------------------------------------------void _main() {cin >> X;rep(i, 1, X + 1) rest[i] = i;rep(i, 1, X + 1) d[i] = 1;rep(p, 2, X + 1) for (int x = p; x <= X; x += p) if(rest[x] % p == 0) {int cnt = 0;while (rest[x] % p == 0) rest[x] /= p, cnt++;d[x] *= cnt + 1;}int mi = inf;rep(a, 1, X) {int fa = a - d[a];int fb = X - a - d[X - a];chmin(mi, abs(fa - fb));}rep(a, 1, X) {int fa = a - d[a];int fb = X - a - d[X - a];if (mi == abs(fa - fb)) {printf("%d %d\n", a, X - a);}}}