Change initial data range

This commit is contained in:
Minseong Jang
2025-06-12 13:36:46 +09:00
parent b3ad9fca05
commit 49410f5264
3 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ void qsort_data_init(int nonce) {
int x = nonce;
for (i = 0; i < 16384; i++) {
x = (x * 97 + 17) % 100000009;
x = (x * 97 + 17) % 100009;
input_qsort_data[i] = x;
}
}