結果

問題 No.2843 Birthday Present Struggle
ユーザー にしろにしろ
提出日時 2024-08-24 17:41:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-08-24 17:41:24
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,760 KB
testcase_01 AC 40 ms
52,800 KB
testcase_02 AC 38 ms
52,216 KB
testcase_03 AC 39 ms
52,180 KB
testcase_04 AC 38 ms
53,248 KB
testcase_05 AC 37 ms
51,744 KB
testcase_06 AC 37 ms
52,192 KB
testcase_07 AC 39 ms
52,552 KB
testcase_08 AC 41 ms
52,176 KB
testcase_09 AC 39 ms
52,004 KB
testcase_10 AC 39 ms
53,584 KB
testcase_11 AC 39 ms
51,992 KB
testcase_12 AC 39 ms
52,308 KB
testcase_13 AC 40 ms
52,268 KB
testcase_14 AC 40 ms
52,344 KB
testcase_15 AC 38 ms
52,492 KB
testcase_16 AC 39 ms
52,672 KB
testcase_17 AC 40 ms
52,668 KB
testcase_18 AC 39 ms
52,356 KB
testcase_19 AC 40 ms
54,028 KB
testcase_20 AC 39 ms
52,768 KB
testcase_21 AC 41 ms
53,576 KB
testcase_22 AC 40 ms
52,220 KB
testcase_23 AC 40 ms
52,548 KB
testcase_24 AC 39 ms
52,960 KB
testcase_25 AC 38 ms
52,952 KB
testcase_26 AC 39 ms
52,444 KB
testcase_27 AC 38 ms
52,276 KB
testcase_28 AC 38 ms
52,240 KB
testcase_29 AC 38 ms
53,216 KB
testcase_30 AC 38 ms
51,748 KB
testcase_31 AC 43 ms
51,812 KB
testcase_32 AC 38 ms
53,816 KB
testcase_33 AC 38 ms
52,424 KB
testcase_34 AC 38 ms
52,140 KB
testcase_35 AC 38 ms
53,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
c=list(map(int,input().split()))

di=[1,-1,0,0]
dj=[0,0,1,-1]

print(4)

for i in range(4):
    print(c[0]+di[i],c[1]+dj[i],sep=" ")
0