結果

問題 No.2493 K-th in L2 with L1
ユーザー miya145592miya145592
提出日時 2023-10-06 22:45:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 67,716 KB
最終ジャッジ日時 2024-07-26 16:46:09
合計ジャッジ時間 921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
Q = int(input())
DK = [list(map(int, input().split())) for _ in range(Q)]
for d, k in DK:
    S = []
    for x in range(-d, d+1):
        y = d-abs(x)
        dist = x**2+y**2
        S.append((x, y, dist))
        if y!=0:
            S.append((x, -y, dist))
    S.sort(key=lambda x:x[2])
    #print(S)
    if len(S)<k:
        print("No")
        continue
    x, y = S[k-1][0], S[k-1][1]
    print("Yes")
    print(x, y)
0