結果

問題 No.5009 Draw A Convex Polygon
ユーザー harurun
提出日時 2022-12-02 00:50:48
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 22 ms / 2,600 ms
コード長 207 bytes
コンパイル時間 1,869 ms
実行使用メモリ 21,880 KB
スコア 3
平均クエリ数 4.00
最終ジャッジ日時 2022-12-02 00:50:56
合計ジャッジ時間 2,734 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  cin.tie(nullptr);
  ios_base::sync_with_stdio(false);
  cout<<3<<endl;
  cout<<0<<" "<<0<<endl;
  cout<<1<<" "<<0<<endl;
  cout<<0<<" "<<1<<endl;
}
0