IA-32マシンコード、27バイト
Hexdump:
60 33 db 8b f9 33 c0 92 43 50 f7 f3 85 d2 75 04
ab 93 ab 93 3b c3 5a 77 ec 61 c3
ソースコード(MS Visual Studio構文):
pushad;
xor ebx, ebx;
mov edi, ecx;
myloop:
xor eax, eax;
xchg eax, edx;
inc ebx;
push eax;
div ebx;
test edx, edx;
jnz skip_output;
stosd;
xchg eax, ebx;
stosd;
xchg eax, ebx;
skip_output:
cmp eax, ebx;
pop edx;
ja myloop;
popad;
ret;
最初のパラメーター(ecx
)は出力へのポインター、2番目のパラメーター(edx
)は数値です。出力の終わりをマークすることはありません。リストの終わりを見つけるために、出力配列にゼロを事前に入力する必要があります。
このコードを使用する完全なC ++プログラム:
#include <cstdint>
#include <vector>
#include <iostream>
#include <sstream>
__declspec(naked) void _fastcall doit(uint32_t* d, uint32_t n) {
_asm {
pushad;
xor ebx, ebx;
mov edi, ecx;
myloop:
xor eax, eax;
xchg eax, edx;
inc ebx;
push eax;
div ebx;
test edx, edx;
jnz skip_output;
stosd;
xchg eax, ebx;
stosd;
xchg eax, ebx;
skip_output:
cmp eax, ebx;
pop edx;
ja myloop;
popad;
ret;
}
}
int main(int argc, char* argv[]) {
uint32_t n;
std::stringstream(argv[1]) >> n;
std::vector<uint32_t> list(2 * sqrt(n) + 3); // c++ initializes with zeros
doit(list.data(), n);
for (auto i = list.begin(); *i; ++i)
std::cout << *i << '\n';
}
出力は仕様に従っていますが、いくつかの不具合があります(ソートの必要性、一意性の必要性はありません)。
入力:69
出力:
69
1
23
3
除数はペアになっています。
入力:100
出力:
100
1
50
2
25
4
20
5
10
10
完全な正方形の場合、最後の除数は2回出力されます(それ自体とのペアです)。
入力:30
出力:
30
1
15
2
10
3
6
5
5
6
入力が完全な正方形に近い場合、最後のペアが2回出力されます。これは、ループ内のチェックの順序によるものです。まず、「剰余= 0」と出力をチェックしてから、「quotient <divisor」をチェックしてからループを終了します。
O(sqrt(n))
。