Lgk2's blog

By Lgk2, history, 4 years ago, In English

https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3347

I'm trying to solve this problem in python but i'm not sure when to stop reading inputs. All inputs come in multiples of 3 but i don't know when to break my loop.

while True:
    print(pow(int(input()), int(input()), int(input())))
    input()

Full text and comments »

  • Vote: I like it
  • +4
  • Vote: I do not like it