結果
問題 | No.1006 Share an Integer |
ユーザー | ryo_n |
提出日時 | 2020-03-06 22:15:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 858 bytes |
コンパイル時間 | 253 ms |
コンパイル使用メモリ | 82,164 KB |
実行使用メモリ | 117,504 KB |
最終ジャッジ日時 | 2024-10-14 07:33:49 |
合計ジャッジ時間 | 4,473 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
62,560 KB |
testcase_01 | AC | 45 ms
55,732 KB |
testcase_02 | AC | 51 ms
62,820 KB |
testcase_03 | WA | - |
testcase_04 | AC | 52 ms
63,576 KB |
testcase_05 | AC | 53 ms
63,468 KB |
testcase_06 | WA | - |
testcase_07 | AC | 55 ms
64,700 KB |
testcase_08 | AC | 52 ms
63,356 KB |
testcase_09 | AC | 53 ms
64,752 KB |
testcase_10 | AC | 53 ms
63,752 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
import sys from functools import lru_cache sys.setrecursionlimit(10 ** 8) input = sys.stdin.readline @lru_cache(maxsize=None) def make_len_divisors(n): ans = 0 for i in range(1, int(n**0.5)+1): if n % i == 0: ans += 1 if i != n // i: ans += 1 return ans def main(): X = int(input()) mi = float("inf") if X % 2 == 0: mi = 0 ans = [] for i in range(X // 4, X // 2 + 1): a = i - make_len_divisors(i) b = (X - i) - make_len_divisors(X - i) if abs(a - b) < mi: mi = abs(a - b) ans = [] if abs(a - b) == mi: ans.append([i, X - i]) for a in ans: print(*a) for a, b in ans[::-1]: if a == b: break print(b, a) if __name__ == '__main__': main()