結果

問題 No.2843 Birthday Present Struggle
ユーザー C++ C++
提出日時 2024-08-23 22:17:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 53,876 KB
最終ジャッジ日時 2024-08-23 22:17:16
合計ジャッジ時間 3,823 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,540 KB
testcase_01 AC 39 ms
52,120 KB
testcase_02 AC 39 ms
52,672 KB
testcase_03 AC 39 ms
53,136 KB
testcase_04 AC 39 ms
52,128 KB
testcase_05 AC 39 ms
53,280 KB
testcase_06 AC 40 ms
53,328 KB
testcase_07 AC 39 ms
52,668 KB
testcase_08 AC 39 ms
52,732 KB
testcase_09 AC 39 ms
52,548 KB
testcase_10 AC 39 ms
52,600 KB
testcase_11 AC 39 ms
52,660 KB
testcase_12 AC 38 ms
52,956 KB
testcase_13 AC 39 ms
53,420 KB
testcase_14 AC 39 ms
53,080 KB
testcase_15 AC 38 ms
53,160 KB
testcase_16 AC 39 ms
53,876 KB
testcase_17 AC 38 ms
53,376 KB
testcase_18 AC 39 ms
52,532 KB
testcase_19 AC 39 ms
53,304 KB
testcase_20 AC 38 ms
53,532 KB
testcase_21 AC 39 ms
52,676 KB
testcase_22 AC 39 ms
53,556 KB
testcase_23 AC 38 ms
53,260 KB
testcase_24 AC 39 ms
53,752 KB
testcase_25 AC 38 ms
53,180 KB
testcase_26 AC 39 ms
53,172 KB
testcase_27 AC 39 ms
53,368 KB
testcase_28 AC 39 ms
52,624 KB
testcase_29 AC 39 ms
53,228 KB
testcase_30 AC 38 ms
53,204 KB
testcase_31 AC 39 ms
52,248 KB
testcase_32 AC 39 ms
52,004 KB
testcase_33 AC 38 ms
52,540 KB
testcase_34 AC 38 ms
52,256 KB
testcase_35 AC 38 ms
52,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os, sys
if os.path.exists("input.txt"):
  sys.stdin = open('input.txt', 'r')

N = int(input())
Ax, Ay = map(int, input().split())
Bx, By = map(int, input().split())
Cx, Cy = map(int, input().split())

def is_ok(i, j):
  return i > 0 and i <= N and j > 0 and j <= N

walls = []
dirs = [0, 1, 0, -1, 0]
for k in range(4):
  nx, ny = dirs[k] + Cx, dirs[k + 1] + Cy
  if is_ok(nx, ny):
    walls.append([nx, ny])

print(len(walls))
for wall in walls:
  print(*wall)
0