diff options
Diffstat (limited to 'kattis-open-almostunionfind/geninput.py')
-rwxr-xr-x | kattis-open-almostunionfind/geninput.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/kattis-open-almostunionfind/geninput.py b/kattis-open-almostunionfind/geninput.py deleted file mode 100755 index 5eef1f3..0000000 --- a/kattis-open-almostunionfind/geninput.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/python - -from random import randint as rand - -n, m = rand(10, 1000), rand(10, 1000) -print(n, m) - -for _ in range(m): - t = rand(1, 3) - if t < 3: - p, q = rand(1, n), rand(1, n) - print(t, p, q) - else: - p = rand(1, n) - print(t, p) |