結果

問題 No.2843 Birthday Present Struggle
ユーザー GOTKAKO
提出日時 2024-08-23 21:06:56
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 1,792 ms
コンパイル使用メモリ 195,788 KB
最終ジャッジ日時 2025-02-23 23:24:22
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    int x1,y1,x2,y2,x3,y3; cin >> x1 >> y1 >> x2 >> y2 >> x3 >> y3;

    cout << 4 << endl;
    vector<pair<int,int>> dxy = {{-1,0},{0,1},{1,0},{0,-1}};
    for(auto [dx,dy] : dxy){
        cout << x3+dx << " " << y3+dy << endl;
    }
}
0