結果

問題 No.2352 Sharpened Knife in Fall
ユーザー fiblonariafiblonaria
提出日時 2023-06-20 16:12:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,012 ms / 3,000 ms
コード長 274 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-06-28 03:10:43
合計ジャッジ時間 18,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 673 ms
81,536 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 969 ms
82,176 KB
testcase_07 AC 546 ms
79,616 KB
testcase_08 AC 986 ms
82,176 KB
testcase_09 AC 1,012 ms
82,432 KB
testcase_10 AC 985 ms
82,048 KB
testcase_11 AC 924 ms
82,000 KB
testcase_12 AC 996 ms
82,432 KB
testcase_13 AC 931 ms
82,304 KB
testcase_14 AC 482 ms
79,440 KB
testcase_15 AC 873 ms
81,792 KB
testcase_16 AC 149 ms
77,440 KB
testcase_17 AC 124 ms
77,312 KB
testcase_18 AC 412 ms
78,592 KB
testcase_19 AC 797 ms
80,768 KB
testcase_20 AC 367 ms
78,592 KB
testcase_21 AC 365 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
R, K = map(int, input().split())
eps = 10 ** (-8)
for i in range(K, 0, -1):
	m = [-R, R]
	while m[1] - m[0] > eps:
		t = sum(m) / 2
		m[R ** 2 * math.acos(t / R) - t * (R ** 2 - t ** 2) ** 0.5 - R ** 2 * math.pi / (K + 1) * i < 0] = t
	print('{:.6f}'.format(t)) 
0