結果

問題 No.1006 Share an Integer
ユーザー eSeFeSeF
提出日時 2020-02-18 17:57:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 419 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,344 KB
最終ジャッジ日時 2024-10-13 22:17:22
合計ジャッジ時間 28,046 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 475 ms
44,092 KB
testcase_01 AC 470 ms
43,840 KB
testcase_02 AC 483 ms
43,488 KB
testcase_03 AC 476 ms
44,216 KB
testcase_04 AC 489 ms
43,600 KB
testcase_05 AC 477 ms
44,092 KB
testcase_06 AC 475 ms
43,700 KB
testcase_07 AC 471 ms
43,616 KB
testcase_08 AC 485 ms
43,620 KB
testcase_09 AC 476 ms
43,444 KB
testcase_10 AC 480 ms
43,616 KB
testcase_11 AC 1,398 ms
43,616 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,852 ms
43,452 KB
testcase_16 AC 1,105 ms
43,472 KB
testcase_17 AC 1,350 ms
43,968 KB
testcase_18 AC 1,862 ms
43,956 KB
testcase_19 AC 1,808 ms
43,624 KB
testcase_20 AC 1,919 ms
44,088 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import sqrt
def f(N):
    d=0;
    for i in range(1,int(sqrt(N))+1):
        if(N%i==0):
            d+=(1 if N/i==i else 2)
    return N-d
X=int(input())
mid=X//2
w=2*(int(sqrt(X))+1)
mindif=X
for i in range(mid-w,mid+w):
  if(i<=0 or X-i<=0):
    continue
  mindif=min(mindif,abs(f(i)-f(X-i)))
for i in range(mid-w,mid+w):
  if(i<=0 or X-i<=0):
    continue
  if(abs(f(i)-f(X-i))==mindif):
    print(i,X-i)
0