結果
問題 | No.1006 Share an Integer |
ユーザー | totori_nyaa |
提出日時 | 2020-03-06 21:42:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 644 bytes |
コンパイル時間 | 1,511 ms |
コンパイル使用メモリ | 167,060 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-10-14 04:53:43 |
合計ジャッジ時間 | 5,119 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
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; typedef long long ll; signed main(){ ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(20); int n; cin>>n; int x[n+1]={}; for(int val=1;val<=n;val++){ int ret = 0; for(int i=1;i*i<=val;i++){ if(val%i)ret++; if(val%i==0 && i*i!=val)ret++; } x[val] = val-ret; } int ans = 11111110; for(int i=1;i<n;i++){ ans = min(ans,abs(x[i]-x[n-i])); } for(int i=1;i<n;i++){ if(abs(x[i]-x[n-i]) == ans){ cout << i << " " << n-i << endl; } } }