結果

問題 No.117 組み合わせの数
ユーザー koba-e964koba-e964
提出日時 2016-10-17 16:24:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 175 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 23,808 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-05-02 03:10:22
合計ジャッジ時間 902 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
17,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:13:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |   for(scanf("%lld",&t);t--;printf("%lld\n",c%2?b(n,k):c%5?(n?b(n+k-1,k):!k):n>=k?f[n]*r(f[n-k])%m:0))scanf("%*[\n]%c(%lld,%lld)",&c,&n,&k);
      |       ~~~~~^~~~~~~~~~~
main.cpp:13:107: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |   for(scanf("%lld",&t);t--;printf("%lld\n",c%2?b(n,k):c%5?(n?b(n+k-1,k):!k):n>=k?f[n]*r(f[n-k])%m:0))scanf("%*[\n]%c(%lld,%lld)",&c,&n,&k);
      |                                                                                                      ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
typedef long long ll;
ll m=1e9+7;
ll f[1<<21],n,k,t,s,u,e;char c;
ll r(ll v){
  for(e=m-2,s=1,u=v%m;e;u=u*u%m,e/=2)if(e%2)s=s*u%m;
  return s;
}
ll b(ll n,ll k){
  return n<k||k<0||n<0?0:(f[n]*r(f[k])%m)*r(f[n-k])%m;}
int main(){
  for(f[t=0]=1;++t<1<<21;f[t]=f[t-1]*t%m);
  for(scanf("%lld",&t);t--;printf("%lld\n",c%2?b(n,k):c%5?(n?b(n+k-1,k):!k):n>=k?f[n]*r(f[n-k])%m:0))scanf("%*[\n]%c(%lld,%lld)",&c,&n,&k);
}
0