結果
問題 | No.420 mod2漸化式 |
ユーザー | kzyKT |
提出日時 | 2015-04-17 09:02:11 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 356 bytes |
コンパイル時間 | 1,724 ms |
コンパイル使用メモリ | 159,128 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 09:32:28 |
合計ジャッジ時間 | 2,932 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 35 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { long long c[32][32],x; for(int i=0;i<32;i++) c[i][i]=c[i][0]=1; for(int i=2;i<32;i++) { for(int j=1;j<i;j++) c[i][j]=c[i-1][j]+c[i-1][j-1]; } cin >> x; if(x<32) cout << c[31][x] << " " << ((1LL<<31)-1)*(x?c[30][x-1]:0) << endl; else cout << 0 << " " << 0 << endl; return 0; }