結果

問題 No.2368 I love a square root of 2
ユーザー shobonvipshobonvip
提出日時 2023-06-30 05:20:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-07-06 18:41:02
合計ジャッジ時間 3,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,080 KB
testcase_01 AC 44 ms
61,952 KB
testcase_02 AC 203 ms
91,904 KB
testcase_03 AC 50 ms
64,000 KB
testcase_04 AC 50 ms
64,512 KB
testcase_05 AC 49 ms
64,128 KB
testcase_06 AC 52 ms
64,640 KB
testcase_07 AC 49 ms
63,488 KB
testcase_08 AC 48 ms
64,256 KB
testcase_09 AC 51 ms
64,640 KB
testcase_10 AC 51 ms
64,768 KB
testcase_11 AC 50 ms
64,128 KB
testcase_12 AC 51 ms
64,000 KB
testcase_13 AC 157 ms
85,376 KB
testcase_14 AC 161 ms
85,452 KB
testcase_15 AC 200 ms
91,216 KB
testcase_16 AC 126 ms
79,488 KB
testcase_17 AC 58 ms
68,736 KB
testcase_18 AC 61 ms
69,760 KB
testcase_19 AC 61 ms
69,504 KB
testcase_20 AC 62 ms
69,376 KB
testcase_21 AC 204 ms
92,032 KB
testcase_22 AC 209 ms
91,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

sqrt2 = 2 ** 0.5

def cntunderk(k):
	y = 0
	cnt = 0
	for x in range(k, -1, -1):
		while True:
			y += 1
			if x + sqrt2 * y >= k:
				y -= 1
				break
		cnt += y + 1
	return cnt

n = int(input()) + 1
mx = 300000

ub = mx
lb = -1
while ub - lb > 1:
	k = (ub + lb) // 2
	if cntunderk(k) < n:
		lb = k
	else:
		ub = k

y = 0
s = []

for x in range(lb, -1, -1):
	while True:
		if x + sqrt2 * y < lb:
			y += 1
			continue
		break
	if x + sqrt2 * y < lb + 1:
		s.append((x, y))

s.sort(key = lambda x : x[0] + x[1] * sqrt2)
n -= cntunderk(lb)
#print(s)
print(*s[n-1])
0