結果
| 問題 |
No.5009 Draw A Convex Polygon
|
| コンテスト | |
| ユーザー |
ぷら
|
| 提出日時 | 2022-12-02 20:29:59 |
| 言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
#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;
}
}
}
ぷら