結果
問題 | No.1006 Share an Integer |
ユーザー | minato |
提出日時 | 2020-03-06 21:42:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 104 ms / 2,000 ms |
コード長 | 1,303 bytes |
コンパイル時間 | 2,179 ms |
コンパイル使用メモリ | 182,968 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-14 04:50:17 |
合計ジャッジ時間 | 3,693 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 41 ms
7,552 KB |
testcase_12 | AC | 95 ms
10,624 KB |
testcase_13 | AC | 102 ms
10,880 KB |
testcase_14 | AC | 104 ms
11,008 KB |
testcase_15 | AC | 80 ms
9,856 KB |
testcase_16 | AC | 30 ms
6,400 KB |
testcase_17 | AC | 41 ms
7,680 KB |
testcase_18 | AC | 81 ms
9,856 KB |
testcase_19 | AC | 71 ms
9,600 KB |
testcase_20 | AC | 84 ms
10,112 KB |
testcase_21 | AC | 99 ms
11,008 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i = 0; i < (int)(n); ++i) #define all(x) x.begin(),x.end() #define ln '\n' const long long MOD = 1000000007LL; //const long long MOD = 998244353LL; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> pii; typedef pair<long long, long long> pll; template<class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true;} return false; } template<class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true;} return false; } /////////////////////////////////////////////////////////////////////////////////////////////////// int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int X; cin >> X; vector<int> A(X+1); iota(all(A),0); for (int i = 1; i <= X; ++i) { for (int j = 1; j*i <=X; ++j) { A[i*j]--; } } int val = 1e9; map<int, int> dic; for (int i = 1; i < X; ++i) { if (val > abs(A[i] - A[X-i])) { val = abs(A[i] - A[X-i]); dic.clear(); dic.emplace(i,X-i); } else if (val==abs(A[i] - A[X-i])) { dic.emplace(i,X-i); } } for (auto i : dic) { cout << i.first << " " << i.second << ln; } }