結果

問題 No.2262 Fractions
ユーザー とりゐとりゐ
提出日時 2023-03-10 18:42:36
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 774 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,796 KB
実行使用メモリ 166,732 KB
最終ジャッジ日時 2024-10-02 03:18:46
合計ジャッジ時間 29,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
117,044 KB
testcase_01 AC 391 ms
77,420 KB
testcase_02 AC 371 ms
77,616 KB
testcase_03 AC 418 ms
76,872 KB
testcase_04 AC 390 ms
76,908 KB
testcase_05 AC 431 ms
77,256 KB
testcase_06 AC 353 ms
77,136 KB
testcase_07 AC 379 ms
77,648 KB
testcase_08 AC 427 ms
77,352 KB
testcase_09 AC 394 ms
77,468 KB
testcase_10 AC 352 ms
76,736 KB
testcase_11 AC 611 ms
78,176 KB
testcase_12 AC 601 ms
78,060 KB
testcase_13 AC 608 ms
78,100 KB
testcase_14 AC 616 ms
78,080 KB
testcase_15 AC 605 ms
78,044 KB
testcase_16 AC 183 ms
76,020 KB
testcase_17 AC 182 ms
76,464 KB
testcase_18 AC 186 ms
76,316 KB
testcase_19 AC 763 ms
126,724 KB
testcase_20 AC 723 ms
120,500 KB
testcase_21 AC 771 ms
128,644 KB
testcase_22 AC 704 ms
120,596 KB
testcase_23 AC 610 ms
108,172 KB
testcase_24 AC 721 ms
165,212 KB
testcase_25 AC 805 ms
166,476 KB
testcase_26 AC 814 ms
164,948 KB
testcase_27 AC 831 ms
164,948 KB
testcase_28 AC 817 ms
164,160 KB
testcase_29 AC 835 ms
166,376 KB
testcase_30 AC 822 ms
166,440 KB
testcase_31 AC 825 ms
166,240 KB
testcase_32 AC 783 ms
166,656 KB
testcase_33 AC 825 ms
166,732 KB
testcase_34 AC 826 ms
166,244 KB
testcase_35 AC 406 ms
166,460 KB
testcase_36 AC 403 ms
166,428 KB
testcase_37 AC 72 ms
77,196 KB
testcase_38 AC 73 ms
77,424 KB
testcase_39 AC 710 ms
123,268 KB
testcase_40 AC 746 ms
123,488 KB
testcase_41 AC 758 ms
123,360 KB
testcase_42 AC 761 ms
123,472 KB
testcase_43 AC 753 ms
123,632 KB
testcase_44 WA -
testcase_45 AC 838 ms
166,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

def calc(n,p):
  dp=[0]*(n+1)
  for i in range(1,n+1):
    s=p*i//m
    dp[i]+=s
    if dp[i]==0:
      continue
    for j in range(2*i,n+1,i):
      dp[j]-=dp[i]
  return sum(dp)

m=1<<38
def solve():
  n,k=map(int,input().split())
  c=calc(n,m-1)
  if k==c+1:
    print('1/1')
    return
  if k<=c:
    rev=False
  elif k<=2*c+1:
    rev=True
    k=2*c+2-k
  else:
    print(-1)
    return
  ng,ok=0,1<<40
  for _ in range(38):
    mid=(ok+ng)//2
    if calc(n,mid)>=k:
      ok=mid
    else:
      ng=mid
  
  ans=-1
  for p in range(1,n+1):
    q=(ok*p)//m
    if m*q>ng*p:
      if rev:
        p,q=q,p
      print(str(q)+'/'+str(p))
      return
    
  raise Exception

for _ in range(int(input())):
  solve()
0