結果

問題 No.98 円を描こう
ユーザー togatoga
提出日時 2015-09-02 23:16:38
言語 Python2
(2.7.18)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 94 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 21:47:06
合計ジャッジ時間 1,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
x,y = map(int, raw_input().split())
print int(2 * math.sqrt(x ** 2 + y ** 2)) + 1
0