結果
問題 | No.1006 Share an Integer |
ユーザー | Mine |
提出日時 | 2020-09-09 15:34:04 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,102 bytes |
コンパイル時間 | 273 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 27,776 KB |
最終ジャッジ日時 | 2024-05-08 22:50:23 |
合計ジャッジ時間 | 4,199 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
16,384 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 27 ms
10,880 KB |
testcase_04 | WA | - |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | WA | - |
testcase_07 | AC | 33 ms
10,880 KB |
testcase_08 | AC | 32 ms
10,752 KB |
testcase_09 | WA | - |
testcase_10 | AC | 31 ms
11,008 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
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: print(a, b) else: print(a, b) print(b, a)