結果
問題 | No.5009 Draw A Convex Polygon |
ユーザー | Nzt3 |
提出日時 | 2022-12-18 00:55:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 278 bytes |
コンパイル時間 | 2,262 ms |
実行使用メモリ | 25,368 KB |
スコア | 0 |
平均クエリ数 | 958286.00 |
最終ジャッジ日時 | 2022-12-18 00:55:48 |
合計ジャッジ時間 | 4,956 ms |
ジャッジサーバーID (参考情報) |
judge11 / judge13 |
(要ログイン)
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; N=1000000; cout<<N<<'\n'; vector<array<int,2>>P(N); for(int i=0;i<N;i++){ cout<<int(1e9*sin(2*M_PI/N*i))<<' '<<int(1e9*cos(2*M_PI/N*i))<<'\n'; } }