結果

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

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
    cout << 3 << endl;
    cout << 0 << " " << 0 << endl;
    cout << 1 << " " << 0 << endl;
    cout << 0 << " " << 1 << endl;
}
0