Cod sursa(job #3338227)
| Utilizator | Data | 1 februarie 2026 17:54:22 | |
|---|---|---|---|
| Problema | Trie | Scor | 0 |
| Compilator | py | Status | done |
| Runda | Arhiva educationala | Marime | 0.28 kb |
def main():
commands = []
with open("trie.in", "r") as in_file:
commands = in_file.readlines()
out_file = open("trie.out", "w")
for _ in range(len(commands)):
out_file.write("0\n")
out_file.close()
if __name__ == "__main__":
main()
