結果

問題 No.98 円を描こう
ユーザー あかりきあかりき
提出日時 2021-02-08 08:51:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 100 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 86,700 KB
実行使用メモリ 75,700 KB
最終ジャッジ日時 2023-09-18 14:26:02
合計ジャッジ時間 1,748 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
70,936 KB
testcase_01 AC 75 ms
70,992 KB
testcase_02 AC 76 ms
71,168 KB
testcase_03 AC 76 ms
71,180 KB
testcase_04 AC 75 ms
71,144 KB
testcase_05 AC 75 ms
70,812 KB
testcase_06 AC 77 ms
75,700 KB
testcase_07 AC 80 ms
75,700 KB
testcase_08 AC 79 ms
75,580 KB
testcase_09 AC 79 ms
75,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y=map(int,input().split())
for i in range(10**5):
  if i**2>4*(x**2+y**2):
    print(i)
    exit()
0