結果
問題 | No.685 Logical Operations |
ユーザー | tatyam |
提出日時 | 2018-05-11 23:53:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 785 bytes |
コンパイル時間 | 1,219 ms |
コンパイル使用メモリ | 158,440 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 09:05:51 |
合計ジャッジ時間 | 2,047 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i,l,r) for(ll i=(l);i<(r);i++) ll mem[64][64],cnt[64]; ll nCm(ll n,ll m){ if(n<m+m)return nCm(n,n-m); if(m==0||n==m)return 1; if(mem[n][m])return mem[n][m]; mem[n][m]=nCm(n-1,m-1)+nCm(n-1,m); return mem[n][m]; } int main(){ cin.tie(0); ios::sync_with_stdio(false); ll n,a=1,power,ans=0; cin>>n; n++; for(int i=0;n;i++){ a=1; power=0; while(a<<1<=n){ a<<=1; power++; } n-=a; for(int j=0;j<=power;j++){ cnt[j+i]+=nCm(power,j); } } for(int i=2;cnt[i];i++){ ans+=cnt[i]*((int)pow(2,i-1)-1); ans%=1000000007; } cout<<ans<<endl; return 0; }