Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Bitnami MediaWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
0611 - Super String
(section)
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Rezolvare == <syntaxhighlight lang="python"> def validate_input(T, queries): if not (1 <= T <= 31000): raise ValueError("Numărul de teste (T) nu respectă restricțiile.") for k in queries: if not (1 <= k <= 1000000000000000): raise ValueError("Poziția cifrei (k) nu respectă restricțiile.") def genereaza_substring(limit): result = "" for i in range(1, limit + 1): result += str(i) * i return result def gaseste_cifra_la_pozitie(superstring, position): return int(superstring[position - 1]) def main(): with open("superstringin.txt", "r") as input_file: T = int(input_file.readline().strip()) queries = [int(input_file.readline().strip()) for _ in range(T)] limit = max(queries) superstring = genereaza_substring(limit) answers = [gaseste_cifra_la_pozitie(superstring, k) for k in queries] with open("superstringout.txt", "w") as output_file: for answer in answers: output_file.write(str(answer) + "\n") if __name__ == "__main__": main() </syntaxhighlight>
Summary:
Please note that all contributions to Bitnami MediaWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Bitnami MediaWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width