結果

問題 No.98 円を描こう
ユーザー neterukun
提出日時 2019-04-27 17:13:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 144 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-28 16:08:45
合計ジャッジ時間 1,091 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 RE * 1
other AC * 1 RE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y = map(int, input().split())
len_d = ((x**2 + y**2)**(0.5)) * 2

if len_d == int(len_d):
    print(int(len_d)+1)
else:
    rint(int(len_d))
0