CompetitiveProgramming/src/bin/test.py

17 lines
422 B
Python
Raw Normal View History

2024-07-02 12:19:33 +01:00
from math import lcm, ceil, log2
2024-11-29 08:34:23 +00:00
from random import choice, randint, shuffle, random
2024-05-28 02:28:12 +01:00
from os import system
2024-06-12 18:41:40 +01:00
from collections import defaultdict
2024-05-28 02:28:12 +01:00
import io
2024-06-12 18:41:40 +01:00
PRIME = 998_244_353
2024-05-28 02:28:12 +01:00
if __name__ == '__main__':
2024-11-29 08:34:23 +00:00
N = 100000
print(N)
print(*(random() for _ in range(N)))
print(*(f'{randint(0, i - 1)} {i}' for i in range(1, N)), sep='\n')
print(N)
for _ in range(N):
print(randint(0, N - 1), random())