結果

問題 No.2843 Birthday Present Struggle
ユーザー hiro1729hiro1729
提出日時 2024-08-23 21:02:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-08-23 21:02:30
合計ジャッジ時間 5,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 33 ms
53,156 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 38 ms
52,604 KB
testcase_09 WA -
testcase_10 AC 34 ms
52,632 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 34 ms
52,180 KB
testcase_25 AC 36 ms
53,724 KB
testcase_26 AC 41 ms
52,316 KB
testcase_27 AC 36 ms
52,636 KB
testcase_28 AC 33 ms
52,216 KB
testcase_29 AC 33 ms
52,888 KB
testcase_30 AC 35 ms
52,268 KB
testcase_31 AC 34 ms
53,360 KB
testcase_32 AC 35 ms
52,836 KB
testcase_33 AC 38 ms
52,236 KB
testcase_34 AC 35 ms
52,532 KB
testcase_35 AC 35 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ax, ay = map(int, input().split())
bx, by = map(int, input().split())
cx, cy = map(int, input().split())
print(8)
for i in range(cx - 1, cx + 2):
	for j in range(cy - 1, cy + 2):
		if not (i == cx and j == cy):
			print(i, j)
0