結果
問題 | No.786 京都大学の過去問 |
ユーザー | komugi |
提出日時 | 2019-02-17 00:29:13 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 253 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 29,440 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-25 02:28:51 |
合計ジャッジ時間 | 1,248 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
ソースコード
#include <stdio.h> int main(){ int a,i,j,ans=0,bufa=1,bufb=1; scanf("%d",&a); for(i=1;i<=a/2;i++){ for(j=0;j<a-2*i;j++)bufa*=(a-i-j); for(j=a-2*i;j>0;j--)bufb*=j; ans+=bufa/bufb; } printf("%d\n",ans+1); }