結果
| 問題 |
No.5009 Draw A Convex Polygon
|
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2022-12-02 00:29:19 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 198 bytes |
| コンパイル時間 | 296 ms |
| 実行使用メモリ | 22,648 KB |
| スコア | 0 |
| 平均クエリ数 | 101.00 |
| 最終ジャッジ日時 | 2022-12-02 00:29:21 |
| 合計ジャッジ時間 | 1,699 ms |
|
ジャッジサーバーID (参考情報) |
judge12 / judge11 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
from math import sin,cos,pi
N=10**2
ANS=[]
ANS.append(str(N))
for i in range(N):
ANS.append(str(round(10**9*sin(2*pi*i/N)))+" "+str(round(10**9*cos(2*pi*i/N))))
print("\n".join(ANS),flush=True)
titia