結果

問題 No.240 ナイト散歩
ユーザー FF256grhyFF256grhy
提出日時 2015-07-10 23:39:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 23,296 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-16 19:29:36
合計ジャッジ時間 1,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 0 ms
6,940 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 0 ms
6,944 KB
testcase_05 AC 0 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 0 ms
6,940 KB
testcase_08 AC 0 ms
6,944 KB
testcase_09 AC 0 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 0 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 0 ms
6,940 KB
testcase_23 AC 0 ms
6,940 KB
testcase_24 AC 0 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 0 ms
6,944 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 0 ms
6,940 KB
testcase_33 AC 0 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%d%d", &x, &y);
      |         ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int memo[13][13];

int main(void) {
	int x, y;
	scanf("%d%d", &x, &y);
	
	int dx[8] = {-2, -1, +1, +2, -2, -1, +1, +2};
	int dy[8] = {+1, +2, +2, +1, -1, -2, -2, -1};
	
	int n;
	memo[6][6] = 1;
	for(n = 0; n < 3; n++) {
		int i, j;
		for(j = 0; j < 13; j++) {
		for(i = 0; i < 13; i++) {
			if(memo[i][j] == n + 1) {
				int k;
				for(k = 0; k < 8; k++) {
					memo[ i + dx[k] ][ j + dy[k] ] = n + 2;
				}
			}
		}
		}
	}
	
	printf("%s\n", (-6 <= x && x <= 6 && -6 <= y && y <= 6 && memo[x + 6][y + 6]) ? "YES" : "NO");
	
	return 0;
}
0