結果
問題 |
No.98 円を描こう
|
ユーザー |
|
提出日時 | 2017-05-02 15:13:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 80 bytes |
コンパイル時間 | 83 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-14 04:41:49 |
合計ジャッジ時間 | 913 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 4 |
other | RE * 6 |
ソースコード
import math x,y=int(input()),int(input()) r=math.sqrt(x*x+y*y) print(int(2*r)+1)