結果
問題 | No.638 Sum of "not power of 2" |
ユーザー | amtgjw |
提出日時 | 2018-06-19 15:47:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 753 bytes |
コンパイル時間 | 599 ms |
コンパイル使用メモリ | 74,132 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 17:15:10 |
合計ジャッジ時間 | 1,169 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <numeric> #include <math.h> using namespace std; #define REP(i,n) for(int i=0;i<(n);++i) #define REPS(i,s,t) for(int i=(s);i<(t);++i) #define INF 2000000007 #define MOD 1000000007 #define MAX 100005 typedef unsigned int uint; typedef unsigned long long int ull; typedef long long int ll; //uint dp[MAX]; int bfs(int X,int n){ if(X<=0)return INF; if(X==1) return n; if(X%2==0){ return bfs(X/2,n+1); } else return bfs(X+1,n+1); return INF; } int main(){ ull N;cin>>N; for(int i=3;i<=N/2;++i){ ull b = N-i; if( ((i&(i-1))!=0) && ((b&(b-1))!=0) ){ cout << i << " " << b << endl; return 0; } } cout << -1 << endl; return 0; }