結果

問題 No.129 お年玉(2)
ユーザー asugen0402asugen0402
提出日時 2019-03-08 09:25:01
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 256 ms / 5,000 ms
コード長 2,367 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 32,000 KB
実行使用メモリ 235,136 KB
最終ジャッジ日時 2024-11-28 01:18:41
合計ジャッジ時間 6,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
20,352 KB
testcase_01 AC 256 ms
235,136 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 92 ms
106,880 KB
testcase_06 AC 152 ms
160,640 KB
testcase_07 AC 187 ms
193,152 KB
testcase_08 AC 116 ms
136,832 KB
testcase_09 AC 162 ms
179,200 KB
testcase_10 AC 180 ms
199,424 KB
testcase_11 AC 106 ms
131,712 KB
testcase_12 AC 140 ms
167,424 KB
testcase_13 AC 146 ms
174,464 KB
testcase_14 AC 165 ms
168,960 KB
testcase_15 AC 114 ms
141,824 KB
testcase_16 AC 124 ms
159,232 KB
testcase_17 AC 154 ms
189,696 KB
testcase_18 AC 139 ms
179,712 KB
testcase_19 AC 146 ms
190,592 KB
testcase_20 AC 145 ms
189,312 KB
testcase_21 AC 193 ms
230,528 KB
testcase_22 AC 111 ms
138,112 KB
testcase_23 AC 158 ms
204,928 KB
testcase_24 AC 151 ms
197,760 KB
testcase_25 AC 106 ms
132,608 KB
testcase_26 AC 109 ms
135,296 KB
testcase_27 AC 107 ms
131,840 KB
testcase_28 AC 192 ms
232,448 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 6 ms
6,016 KB
testcase_34 AC 4 ms
5,248 KB
testcase_35 AC 5 ms
5,632 KB
testcase_36 AC 5 ms
6,144 KB
testcase_37 AC 6 ms
6,912 KB
testcase_38 AC 37 ms
35,584 KB
testcase_39 AC 48 ms
50,432 KB
testcase_40 AC 102 ms
124,032 KB
testcase_41 AC 72 ms
80,256 KB
testcase_42 AC 39 ms
39,552 KB
testcase_43 AC 39 ms
38,912 KB
testcase_44 AC 189 ms
233,472 KB
testcase_45 AC 23 ms
24,832 KB
testcase_46 AC 53 ms
55,296 KB
testcase_47 AC 170 ms
226,816 KB
testcase_48 AC 116 ms
143,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <float.h>
#include <limits.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

// 内部定数
#define D_MOD			1000000000								// 除数(10の9乗)
#define D_COMB_MAX		10005									// 最大人数

// 内部変数
static FILE *szpFpI;											// 入力
static int si2Comb[D_COMB_MAX][D_COMB_MAX];						// 組み合わせ表[n][k] = nCk

// 内部変数 - テスト用
#ifdef D_TEST
	static int siRes;
	static FILE *szpFpA;
#endif

// nCk(組み合わせ表[n][k])の作成 - パスカルの三角形
int
fMakeComb(
	int piRng					// <I> 範囲
)
{
	int i, j;

	for (i = 0; i <= piRng; ++i) {
		for (j = 0; j <= i; ++j) {
			if (j == 0 || j == i) {
				si2Comb[i][j] = 1;
			}
			else {
				si2Comb[i][j] = si2Comb[i - 1][j - 1] + si2Comb[i - 1][j];
				si2Comb[i][j] %= D_MOD;
			}
		}
	}

	return 0;
}

// 実行メイン
int
fMain(
	int piTNo					// <I> テスト番号 1~
)
{
	char lc1Buf[1024], lc1Out[1024];

	// 入力 - セット
#ifdef D_TEST
	sprintf(lc1Buf, ".\\Test\\T%d.txt", piTNo);
	szpFpI = fopen(lc1Buf, "r");
	sprintf(lc1Buf, ".\\Test\\A%d.txt", piTNo);
	szpFpA = fopen(lc1Buf, "r");
	siRes = 0;
#else
	szpFpI = stdin;
#endif

	// 金額 - 取得
	long long llMoney;
	fgets(lc1Buf, sizeof(lc1Buf), szpFpI);
	sscanf(lc1Buf, "%lld", &llMoney);

	// 人数 - 取得
	int liAll;
	fgets(lc1Buf, sizeof(lc1Buf), szpFpI);
	sscanf(lc1Buf, "%d", &liAll);

	// nCk(組み合わせ表[n][k])の作成 - パスカルの三角形
	fMakeComb(liAll);

	// 残額
	llMoney %= liAll * 1000;

	// 当たり人数
	int liHit = (int)(llMoney / 1000);

	// 結果 - セット
	sprintf(lc1Out, "%d\n", si2Comb[liAll][liHit]);

	// 結果 - 表示
#ifdef D_TEST
	fgets(lc1Buf, sizeof(lc1Buf), szpFpA);
	if (strcmp(lc1Buf, lc1Out)) {
		siRes = -1;
	}
#else
	printf("%s", lc1Out);
#endif

	// 残データ有無
#ifdef D_TEST
	lc1Buf[0] = '\0';
	fgets(lc1Buf, sizeof(lc1Buf), szpFpA);
	if (strcmp(lc1Buf, "")) {
		siRes = -1;
	}
#endif

	// テストファイルクローズ
#ifdef D_TEST
	fclose(szpFpI);
	fclose(szpFpA);
#endif

	// テスト結果
#ifdef D_TEST
	if (siRes == 0) {
		printf("OK %d\n", piTNo);
	}
	else {
		printf("NG %d\n", piTNo);
	}
#endif

	return 0;
}

int
main()
{

#ifdef D_TEST
	int i;
	for (i = D_TEST_SNO; i <= D_TEST_ENO; i++) {
		fMain(i);
	}
#else
	fMain(0);
#endif

	return 0;
}

0