結果

問題 No.2843 Birthday Present Struggle
ユーザー akasia_midoriakasia_midori
提出日時 2024-08-23 21:19:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,808 KB
最終ジャッジ日時 2024-08-23 21:19:04
合計ジャッジ時間 3,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,200 KB
testcase_01 AC 35 ms
52,532 KB
testcase_02 AC 34 ms
53,144 KB
testcase_03 AC 35 ms
52,740 KB
testcase_04 AC 33 ms
53,420 KB
testcase_05 AC 31 ms
51,936 KB
testcase_06 AC 33 ms
52,872 KB
testcase_07 AC 32 ms
52,824 KB
testcase_08 AC 33 ms
51,944 KB
testcase_09 AC 38 ms
53,488 KB
testcase_10 AC 34 ms
53,356 KB
testcase_11 AC 34 ms
52,272 KB
testcase_12 AC 33 ms
52,760 KB
testcase_13 AC 35 ms
52,740 KB
testcase_14 AC 34 ms
52,824 KB
testcase_15 AC 35 ms
53,808 KB
testcase_16 AC 37 ms
53,472 KB
testcase_17 AC 37 ms
52,440 KB
testcase_18 AC 36 ms
53,004 KB
testcase_19 AC 37 ms
53,216 KB
testcase_20 AC 34 ms
52,904 KB
testcase_21 AC 33 ms
52,332 KB
testcase_22 AC 39 ms
52,216 KB
testcase_23 AC 34 ms
52,136 KB
testcase_24 AC 35 ms
52,528 KB
testcase_25 AC 35 ms
52,656 KB
testcase_26 AC 39 ms
52,320 KB
testcase_27 AC 35 ms
52,632 KB
testcase_28 AC 38 ms
51,820 KB
testcase_29 AC 34 ms
53,512 KB
testcase_30 AC 35 ms
53,228 KB
testcase_31 AC 38 ms
53,212 KB
testcase_32 AC 34 ms
52,980 KB
testcase_33 AC 37 ms
52,532 KB
testcase_34 AC 34 ms
53,224 KB
testcase_35 AC 34 ms
52,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input().rstrip()
def mi(): return list(map(int, input().split()))

# import sys
# input = sys.stdin.readline
# import sys
# sys.setrecursionlimit(10**8)
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
input_count = 0
N = oi()
Ax,Ay = mi()
Bx,By = mi()
Cx,Cy = mi()
print(4)
# 4近傍
d = [(0,1), (0,-1), (1,0), (-1, 0)]

for dy,dx in d:
    print(*[Cx+dx,Cy+dy])
0