Correcting.

This commit is contained in:
unlockable
2023-11-29 15:08:39 +08:00
parent 80b4797de3
commit c2c6db662c
4 changed files with 83 additions and 45 deletions

12
2023206/rand_input.py Normal file
View File

@@ -0,0 +1,12 @@
import random
import sys
M = random.randint(10,1000)
N = random.randint(10,1000)
K = random.randint(10,1000)
arr = list(range(0,M))
random.shuffle(arr)
with open('./fuck.txt','w') as f:
f.write(str(M)+' '+str(N)+' '+str(K)+'\n')
for i in arr:
f.write(str(i)+' ')
f.write('\n')