結果

問題 No.98 円を描こう
ユーザー QWjoBSPe2OhZBaaQWjoBSPe2OhZBaa
提出日時 2018-12-09 19:59:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 490 ms / 5,000 ms
コード長 145 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,176 KB
最終ジャッジ日時 2024-09-16 15:30:36
合計ジャッジ時間 5,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 462 ms
43,792 KB
testcase_01 AC 461 ms
43,976 KB
testcase_02 AC 464 ms
44,176 KB
testcase_03 AC 474 ms
44,040 KB
testcase_04 AC 464 ms
44,056 KB
testcase_05 AC 468 ms
43,792 KB
testcase_06 AC 466 ms
43,916 KB
testcase_07 AC 470 ms
43,920 KB
testcase_08 AC 490 ms
43,908 KB
testcase_09 AC 473 ms
44,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
x,y=map(int,input().split())
r2=(x**2+y**2)
r=np.sqrt(r2)
rs=r/1
if rs==r:
    print(int(rs*2 + 1))
else:
    print(int(rs*2))
0