結果

問題 No.98 円を描こう
ユーザー ytft
提出日時 2022-11-12 12:03:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 154 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 58,240 KB
最終ジャッジ日時 2024-09-14 03:42:49
合計ジャッジ時間 1,506 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
A,B=map(int,input().split())
for i in range(100000):
	if i**2>(A**2+B**2)*4:
		print(i)
		sys.exit()
0