結果
| 問題 | No.420 mod2漸化式 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-28 20:52:56 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 382 bytes |
| 記録 | |
| コンパイル時間 | 1,172 ms |
| コンパイル使用メモリ | 208,484 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-09 20:05:58 |
| 合計ジャッジ時間 | 2,506 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 35 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);i++)
using namespace std;
using lint=long long;
int main(){
lint comb[40][40]={};
rep(n,40){
comb[n][0]=1;
for(int r=1;r<=n;r++) comb[n][r]=comb[n-1][r-1]+comb[n-1][r];
}
int x; scanf("%d",&x);
if(x>31) puts("0 0");
else printf("%lld %lld\n",comb[31][x],x==0?0:comb[30][x-1]*((1LL<<31)-1));
return 0;
}