結果

問題 No.1006 Share an Integer
ユーザー ogi_welcomeogi_welcome
提出日時 2020-03-06 23:29:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 485 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 484,536 KB
最終ジャッジ日時 2024-04-22 10:38:44
合計ジャッジ時間 16,410 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 913 ms
445,600 KB
testcase_01 AC 880 ms
438,688 KB
testcase_02 AC 1,109 ms
469,460 KB
testcase_03 AC 884 ms
438,820 KB
testcase_04 AC 1,140 ms
469,904 KB
testcase_05 AC 1,141 ms
469,980 KB
testcase_06 AC 1,114 ms
469,908 KB
testcase_07 AC 1,141 ms
470,492 KB
testcase_08 AC 1,113 ms
469,848 KB
testcase_09 AC 1,149 ms
470,464 KB
testcase_10 AC 1,119 ms
469,908 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(n):
    l=[]
    for i in range(2,int(n**0.5)+1):
      if n%i==0:
        cnt=0
        while n%i==0:
          cnt+=1
          n//=i
        l.append((i,cnt))
    ans=1
    if n>1:
      l.append((n,1))
    for k in l:
      ans*=(k[1]+1)
    return ans
x=int(input())
e=[[] for i in range(10**7+1)]
q=10**7+2
for i in range(max(1,int(x**0.5)-100),min(x,int(x*0.5)+100)):
    r=abs(i-f(i)-(x-i)+f(x-i))
    e[r].append((i,x-i))
    q=min(q,r)
for j in e[q]:
  print(j[0],j[1])
0