結果
問題 | No.1611 Minimum Multiple with Double Divisors |
ユーザー | tktk_snsn |
提出日時 | 2021-09-21 13:18:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 922 bytes |
コンパイル時間 | 363 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 54,264 KB |
最終ジャッジ日時 | 2024-07-03 20:37:07 |
合計ジャッジ時間 | 21,003 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,533 ms
54,080 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 186 ms
53,860 KB |
testcase_29 | AC | 188 ms
54,088 KB |
testcase_30 | AC | 187 ms
53,840 KB |
testcase_31 | AC | 189 ms
54,088 KB |
testcase_32 | AC | 181 ms
54,032 KB |
testcase_33 | AC | 185 ms
53,836 KB |
testcase_34 | AC | 189 ms
53,836 KB |
testcase_35 | WA | - |
testcase_36 | AC | 189 ms
54,168 KB |
testcase_37 | AC | 189 ms
53,832 KB |
testcase_38 | AC | 189 ms
54,036 KB |
ソースコード
from itertools import chain import sys input = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) inf = 10 ** 18 def prime_set(N): """ Nまでの素数のsetを返す """ if N < 4: return ({}, {}, {2}, {2, 3})[N] Nsq = int(N ** 0.5 + 0.5) + 1 primes = {2, 3} | set(chain(range(5, N + 1, 6), range(7, N + 1, 6))) for i in range(5, Nsq, 2): if i in primes: primes -= set(range(i * i, N + 1, i * 2)) return sorted(primes) def F(n, p): res = 1 for _ in range(p): res *= n if res > inf: return inf return res U = 10 ** 6 Prime = prime_set(U) T = int(input()) for _ in range(T): X = int(input()) ans = X D = inf for p in Prime: if p >= D: break cnt = 0 while X % p == 0: cnt += 1 X //= p D = min(D, F(p, cnt + 1)) print(ans * D)