結果
問題 | No.1006 Share an Integer |
ユーザー | Mine |
提出日時 | 2020-09-09 15:38:54 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,139 ms / 2,000 ms |
コード長 | 1,107 bytes |
コンパイル時間 | 484 ms |
コンパイル使用メモリ | 82,568 KB |
実行使用メモリ | 93,364 KB |
最終ジャッジ日時 | 2024-05-08 22:54:17 |
合計ジャッジ時間 | 12,546 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
53,760 KB |
testcase_01 | AC | 43 ms
53,632 KB |
testcase_02 | AC | 48 ms
55,680 KB |
testcase_03 | AC | 47 ms
53,760 KB |
testcase_04 | AC | 55 ms
63,104 KB |
testcase_05 | AC | 66 ms
68,096 KB |
testcase_06 | AC | 66 ms
67,584 KB |
testcase_07 | AC | 69 ms
68,736 KB |
testcase_08 | AC | 63 ms
66,688 KB |
testcase_09 | AC | 69 ms
69,120 KB |
testcase_10 | AC | 66 ms
68,224 KB |
testcase_11 | AC | 658 ms
86,016 KB |
testcase_12 | AC | 1,067 ms
92,332 KB |
testcase_13 | AC | 1,132 ms
93,184 KB |
testcase_14 | AC | 1,139 ms
93,364 KB |
testcase_15 | AC | 994 ms
90,932 KB |
testcase_16 | AC | 529 ms
84,096 KB |
testcase_17 | AC | 684 ms
86,144 KB |
testcase_18 | AC | 984 ms
91,136 KB |
testcase_19 | AC | 957 ms
90,496 KB |
testcase_20 | AC | 1,045 ms
91,364 KB |
testcase_21 | AC | 1,124 ms
93,184 KB |
ソースコード
from collections import defaultdict def Sieve_of_Eratosthenes(maxA): lst = [-1]*(maxA+1) lst[0] = 0 lst[1] = 1 for i in range(2, maxA+1): if lst[i] == -1: for g in range(i, maxA+1, i): if lst[g] == -1: lst[g] = i return lst def factorization(n): d = defaultdict(int) now = n while True: if now == lst[now]: if now != 1: d[now] += 1 break r = lst[now] while now % r == 0: now //= r d[r] += 1 ans = 1 for i, m in d.items(): ans *= (m+1) return ans x = int(input()) lst = Sieve_of_Eratosthenes(x) MIN = float("inf") ans_list = [] for i in range(1, x//2+1): a = i b = x-i fa = a-factorization(a) fb = b-factorization(b) dif = abs(fa-fb) if MIN > dif: MIN = dif ans_list = [] ans_list.append((a, b)) elif MIN == dif: ans_list.append((a, b)) for a, b in ans_list: if a == b: break print(a, b) for a, b in ans_list[::-1]: print(b, a)