結果

問題 No.1006 Share an Integer
ユーザー mkawa2mkawa2
提出日時 2020-03-06 22:51:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 91,336 KB
最終ジャッジ日時 2024-10-14 09:17:22
合計ジャッジ時間 4,507 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,868 KB
testcase_01 AC 42 ms
53,344 KB
testcase_02 AC 45 ms
58,000 KB
testcase_03 AC 40 ms
52,572 KB
testcase_04 AC 43 ms
59,212 KB
testcase_05 AC 44 ms
60,716 KB
testcase_06 AC 45 ms
60,420 KB
testcase_07 AC 46 ms
59,732 KB
testcase_08 AC 44 ms
59,536 KB
testcase_09 AC 45 ms
59,908 KB
testcase_10 AC 45 ms
60,988 KB
testcase_11 AC 186 ms
84,564 KB
testcase_12 AC 345 ms
90,316 KB
testcase_13 AC 368 ms
91,336 KB
testcase_14 AC 349 ms
91,200 KB
testcase_15 AC 270 ms
89,060 KB
testcase_16 AC 132 ms
82,324 KB
testcase_17 AC 156 ms
84,580 KB
testcase_18 AC 299 ms
89,252 KB
testcase_19 AC 271 ms
88,600 KB
testcase_20 AC 299 ms
89,752 KB
testcase_21 AC 376 ms
91,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def II(): return int(sys.stdin.readline())

def main():
    def score(a):
        b=x-a
        sa=a-cntf[a]
        sb=b-cntf[b]
        return abs(sa-sb)

    x=II()
    cntf=[2]*(x+1)
    cntf[1]=1
    for b in range(2,x):
        if b*2>x:break
        for a in range(2*b,x+1,b):
            cntf[a]+=1
    mn=10**9
    ans=[]
    for a in range(1,x+1):
        s=score(a)
        if s==mn:ans.append((a,x-a))
        if s<mn:
            mn=s
            ans=[(a,x-a)]
    for a in ans:print(*a)

main()
0