結果

問題 No.5009 Draw A Convex Polygon
ユーザー ぷらぷら
提出日時 2022-12-02 20:29:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 279 bytes
コンパイル時間 1,765 ms
実行使用メモリ 21,748 KB
スコア 0
平均クエリ数 1000001.00
最終ジャッジ日時 2022-12-02 20:30:07
合計ジャッジ時間 7,108 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    cout << 1000000 << endl;
    for(int i = 0; i < 1000000; i++) {
        if(i%2 == 0) {
            cout << i << " " << 1 << endl;
        }
        else {
            cout << i << " " << 0 << endl;
        }
    }
}
0