結果

問題 No.2843 Birthday Present Struggle
ユーザー るこーそー
提出日時 2024-09-27 20:09:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 53,848 KB
最終ジャッジ日時 2024-09-27 20:10:00
合計ジャッジ時間 8,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
_,_=map(int,input().split())
_,_=map(int,input().split())
cx,cy=map(int,input().split())

for dx in range(-1,2):
    for dy in range(-1,2):
        if dx==0 or dy==0:continue
        print(cx+dx,cy+dy)
0