結果

問題 No.166 マス埋めゲーム
ユーザー ZackeyKeiZackeyKei
提出日時 2015-03-19 23:58:12
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 23,424 KB
実行使用メモリ 490,728 KB
最終ジャッジ日時 2024-06-28 23:28:01
合計ジャッジ時間 2,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <cstdio>

int main(void)
{
	int h, w, n, k;
	int no = 0;

	scanf("%d%d%d%d", &h, &w, &n, &k);

	int **math = new int*[h];
	for (int i = 0; i < h; i++)
	{
		math[i] = new int[w];
	}

	for (int i = 0; i < h; i++)
	{
		for (int j = 0; j < w; j++)
		{
			no++;
			math[i][j] = no;
			if (no >= n)
			{
				no = 1;
			}
		}
	}

	if (math[h - 1][w - 1] == k)
	{
		printf("YES\n");
	}
	else
	{
		printf("NO\n");
	}

	return 0;
}
0