結果

問題 No.5009 Draw A Convex Polygon
ユーザー O--OO--O
提出日時 2022-12-02 17:17:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,600 ms
コード長 691 bytes
コンパイル時間 1,850 ms
実行使用メモリ 21,768 KB
スコア 3
平均クエリ数 4.00
最終ジャッジ日時 2022-12-02 17:17:40
合計ジャッジ時間 2,640 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
21,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
typedef long double ld;
#define int ll
#define double ld
#define _FastIO ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define pii pair<int , int>
#define pb emplace_back
//#define endl '\n'
#define all(x) x.begin() , x.end()
#define rall(x) x.rbegin() , x.rend()
#define F first
#define S second
const int mod = 1e9 + 7;
const int MAXX = 1e5 + 5;
const int N = 1e5;

char a , b , c;


signed main()
{
    _FastIO;
//  freopen("input.txt", "r", stdin);
//	freopen("output.txt", "w", stdout);
    cout << "3" << endl;
    cout << "0 0" << endl;
    cout << "1 0" << endl;
    cout << "0 1" << endl;
    return 0;
}
0