結果
問題 |
No.5009 Draw A Convex Polygon
|
ユーザー |
![]() |
提出日時 | 2022-12-02 00:09:48 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 129 bytes |
コンパイル時間 | 315 ms |
実行使用メモリ | 14,800 KB |
スコア | 0 |
最終ジャッジ日時 | 2022-12-02 00:09:56 |
合計ジャッジ時間 | 7,614 ms |
ジャッジサーバーID (参考情報) |
judge13 / judge12 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | TLE * 1 |
ソースコード
from math import sin,cos,pi N=10**6 print(N) for i in range(N): print(round(10**9*sin(2*pi/N*i)),round(10**9*cos(2*pi/N*i)))