結果
問題 | No.5009 Draw A Convex Polygon |
ユーザー | O--O |
提出日時 | 2022-12-02 17:25:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,600 ms |
コード長 | 774 bytes |
コンパイル時間 | 2,006 ms |
実行使用メモリ | 22,612 KB |
スコア | 6 |
平均クエリ数 | 7.00 |
最終ジャッジ日時 | 2022-12-02 17:25:54 |
合計ジャッジ時間 | 2,897 ms |
ジャッジサーバーID (参考情報) |
judge13 / judge12 |
純コード判定しない問題か言語 |
(要ログイン)
ソースコード
#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 << "6" << endl; cout << "-3 4" << endl; cout << "-3 1" << endl; cout << "0 0" << endl; cout << "3 1" << endl; cout << "3 4" << endl; cout << "0 5" << endl; return 0; }