結果

問題 No.1006 Share an Integer
ユーザー tamatotamato
提出日時 2020-03-06 21:37:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-10-14 04:34:48
合計ジャッジ時間 4,706 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 49 ms
58,112 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 44 ms
58,368 KB
testcase_05 AC 46 ms
59,008 KB
testcase_06 AC 46 ms
59,136 KB
testcase_07 AC 46 ms
58,880 KB
testcase_08 AC 47 ms
59,008 KB
testcase_09 AC 47 ms
59,136 KB
testcase_10 AC 46 ms
58,624 KB
testcase_11 AC 177 ms
84,608 KB
testcase_12 AC 291 ms
90,496 KB
testcase_13 AC 301 ms
91,264 KB
testcase_14 AC 297 ms
91,008 KB
testcase_15 AC 256 ms
89,216 KB
testcase_16 AC 139 ms
82,176 KB
testcase_17 AC 181 ms
84,224 KB
testcase_18 AC 268 ms
88,832 KB
testcase_19 AC 255 ms
88,704 KB
testcase_20 AC 276 ms
89,344 KB
testcase_21 AC 329 ms
91,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    X = int(input())

    num_d = list(range(X+1))
    for d in range(1, X+1):
        for j in range(1, (X // d) + 1):
            num_d[d*j] -= 1

    diff = 10**8
    ans = []
    for a in range(1, (X//2)+1):
        tmp = abs(num_d[a] - num_d[X-a])
        if tmp < diff:
            ans = [a]
            diff = tmp
        elif tmp == diff:
            ans.append(a)
    for a in ans:
        print(a, X-a)
    if ans[-1]*2 == X:
        ans.pop()
    for a in reversed(ans):
        print(X-a, a)



if __name__ == '__main__':
    main()
0