Created
August 14, 2023 06:37
-
-
Save recuraki/96c8b712c16d7b73e0a45d32f9b1c955 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
insert_numbers(85229ul); // AtCoder C++20, C++23 gcc12.2 killer | |
insert_numbers(107897);// CodeForces C++11, C++14 killer | |
insert_numbers(126271);// CodeForces C++17 killer | |
""" | |
N = 200000 | |
# output points | |
cur = 0 | |
magic = 85229 | |
# point | |
print(N) | |
for i in range(N): print(magic * i % (10**18), i) | |
# output queries | |
print(N) | |
queries = [] | |
for i in range(N): | |
queries.append(magic * i % (10**18)) | |
print(*queries) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment