結果

問題 No.462 6日知らずのコンピュータ
ユーザー asugen0402asugen0402
提出日時 2019-05-30 14:35:27
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 2,878 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 32,436 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-17 18:52:30
合計ジャッジ時間 2,723 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
4,348 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
testcase_11 AC 1 ms
4,348 KB
testcase_12 AC 1 ms
4,348 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
4,348 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
4,348 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 1 ms
4,348 KB
testcase_50 AC 1 ms
4,348 KB
testcase_51 AC 1 ms
4,348 KB
testcase_52 AC 1 ms
4,348 KB
testcase_53 AC 1 ms
4,348 KB
testcase_54 AC 1 ms
4,348 KB
testcase_55 AC 1 ms
4,348 KB
testcase_56 AC 1 ms
4,348 KB
testcase_57 AC 1 ms
4,348 KB
testcase_58 AC 1 ms
4,348 KB
testcase_59 AC 1 ms
4,348 KB
testcase_60 AC 1 ms
4,348 KB
testcase_61 AC 1 ms
4,348 KB
testcase_62 AC 1 ms
4,348 KB
testcase_63 AC 1 ms
4,348 KB
testcase_64 AC 1 ms
4,348 KB
testcase_65 AC 1 ms
4,348 KB
testcase_66 AC 1 ms
4,348 KB
testcase_67 AC 1 ms
4,348 KB
testcase_68 AC 1 ms
4,348 KB
testcase_69 AC 1 ms
4,348 KB
testcase_70 AC 1 ms
4,348 KB
testcase_71 AC 1 ms
4,348 KB
testcase_72 AC 1 ms
4,348 KB
testcase_73 AC 1 ms
4,348 KB
testcase_74 AC 1 ms
4,348 KB
testcase_75 AC 1 ms
4,348 KB
testcase_76 AC 1 ms
4,348 KB
testcase_77 AC 1 ms
4,348 KB
testcase_78 AC 1 ms
4,348 KB
testcase_79 AC 1 ms
4,348 KB
testcase_80 AC 1 ms
4,348 KB
testcase_81 AC 1 ms
4,348 KB
testcase_82 AC 1 ms
4,348 KB
testcase_83 AC 1 ms
4,348 KB
testcase_84 AC 1 ms
4,348 KB
testcase_85 AC 1 ms
4,348 KB
testcase_86 AC 1 ms
4,348 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_ON			1										// 汎用フラグ - ON
#define D_OFF			0										// 汎用フラグ - OFF
#define D_MOD			1000000007								// 除数(10の9乗+7)
#define D_DIGIT_MAX		65										// 最大桁数

// 内部変数
static FILE *szpFpI;											// 入力
static int siDCnt;												// 桁数
static char sc2Val[D_DIGIT_MAX][D_DIGIT_MAX];					// 配列
static int siVCnt;												// 配列数

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

// 出力
int
fOut(
	char *pcpLine				// <I> 1行
)
{
	char lc1Buf[1024];

#ifdef D_TEST
	fgets(lc1Buf, sizeof(lc1Buf), szpFpA);
	if (strcmp(lc1Buf, pcpLine)) {
		siRes = -1;
	}
#else
	printf("%s", pcpLine);
#endif

	return 0;
}

// 実行メイン
int
fMain(
)
{
	int i, j;
	char lc1Buf[1024];

	// 桁数・配列数 - 取得
	fgets(lc1Buf, sizeof(lc1Buf), szpFpI);
	sscanf(lc1Buf, "%d%d", &siDCnt, &siVCnt);
	siVCnt += 2;

	// 配列 - 取得
	for (i = 1; i < siVCnt - 1; i++) {
		int liVal;
		fscanf(szpFpI, "%d", &liVal);

		// 2進化
		for (j = 0; liVal > 0; j++) {
			if (liVal % 2 == 1) {
				sc2Val[i][j] = D_ON;
			}
			liVal /= 2;
		}
	}
	fgets(lc1Buf, sizeof(lc1Buf), szpFpI);

	// 配列 - 最終
	memset(sc2Val[siVCnt - 1], D_ON, sizeof(sc2Val[siVCnt - 1]));

	// パターン数 - 取得
	long long llPCnt = 1;
	for (i = 0; i < siVCnt - 1; i++) {

		// 追加数
		int liACnt = 0;
		for (j = 0; j < siDCnt; j++) {
			if (sc2Val[i][j] == D_ON) {
				if (sc2Val[i + 1][j] != D_ON) {
					return 0;
				}
			}
			else {
				if (sc2Val[i + 1][j] == D_ON) {
					liACnt++;
					llPCnt *= liACnt;
					llPCnt %= D_MOD;
				}
			}
		}
	}

	return (int)llPCnt;
}

// 1回実行
int
fOne(
)
{
	int liRet;
	char lc1Buf[1024];

	// データ - 初期化
	memset(sc2Val, 0, sizeof(sc2Val));							// 配列

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

	// 実行メイン
	liRet = fMain();

	// 出力
	sprintf(lc1Buf, "%d\n", liRet);
	fOut(lc1Buf);

	// 残データ有無
#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", siTNo);
	}
	else {
		printf("NG %d\n", siTNo);
	}
#endif

	return 0;
}

// プログラム開始
int
main()
{

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

	return 0;
}

0