結果

問題 No.799 赤黒かーどげぇむ
ユーザー devxsssdevxsss
提出日時 2019-03-19 18:40:39
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 485 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 54,648 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-09-14 03:21:26
合計ジャッジ時間 4,689 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,760 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 RE -
testcase_03 WA -
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 WA -
testcase_08 WA -
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |     scanf("%d %d %d %d",&n,&r,&n2,&r2);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <stdio.h>
using namespace std;
int factorial(int n){
int i;
if(n==1)
    return n=1;
else
    n*=factorial(n-1);
return n;
}
int main()
{   int n,r,n2,r2,result,result2;
    scanf("%d %d %d %d",&n,&r,&n2,&r2);
    int b1=r-n+1;
    int b2=r2-n2+1;
    result=factorial(b1)/(factorial(1)*factorial(b1-1));
result2=factorial(b2)/(factorial(1)*factorial(b2-1));
int total=result*result2;
int sama=min(r,r2)-max(n,n2)+1;
    cout<<total-sama;


    return 0;
}
0