結果

問題 No.2843 Birthday Present Struggle
ユーザー GOTKAKOGOTKAKO
提出日時 2024-08-23 21:06:56
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 204,380 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 21:07:00
合計ジャッジ時間 4,265 ms
ジャッジサーバーID
(参考情報)
judge5 / 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