結果
| 問題 | 
                            No.5009 Draw A Convex Polygon
                             | 
                    
| コンテスト | |
| ユーザー | 
                             w0mbat
                         | 
                    
| 提出日時 | 2022-12-06 19:28:20 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 170 bytes | 
| コンパイル時間 | 277 ms | 
| 実行使用メモリ | 101,636 KB | 
| スコア | 0 | 
| 平均クエリ数 | 958286.00 | 
| 最終ジャッジ日時 | 2022-12-06 19:28:28 | 
| 合計ジャッジ時間 | 5,529 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge14 / judge15 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 1 | 
ソースコード
from math import cos, floor, pi, sin
N = 10**6
r = 10**9 - 10
t = 0
d = 2 * pi / N
print(N)
for _ in range(N):
    print(floor(r * cos(t)), floor(r * sin(t)))
    t += d
            
            
            
        
            
w0mbat