結果
問題 | No.420 mod2漸化式 |
ユーザー |
|
提出日時 | 2020-04-28 20:52:56 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 382 bytes |
コンパイル時間 | 2,310 ms |
コンパイル使用メモリ | 191,952 KB |
最終ジャッジ日時 | 2025-01-10 02:57:40 |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 35 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:15:21: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | int x; scanf("%d",&x); | ~~~~~^~~~~~~~~
ソースコード
#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;}