UVA-1547 || Automatic Answer
1 1547 - Automatic Answer: test_case = int ( input ()) for k in range (test_case): number = int ( input ()) answer...
1 1547 - Automatic Answer: test_case = int ( input ()) for k in range (test_case): number = int ( input ()) answer...
11332 - Summing Digits: try : while True : n = int ( input ()) if n == 0 : break if n< 10 : print (n) if n...
11185 - Ternary try : while True : li=[] number = int ( input ()) if number< 0 : break ...
11172 - Relational Operator: test_case = int ( input ()) for i in range (test_case): a,b = map ( int , input ().split()) ...
10783 - Odd Sum: test_case = int ( input ()) c = 1 for i in range (test_case): a = int ( input ()) b = int ( input (...
10079 - Pizza Cutting: try : while True : lines = int ( input ()) if lines< 0 : break ...
10071 - Back to High School Physics: try : while True : v,t = map ( int , input ().split()) print ( 2 *v...
10055 - Hashmat the Brave Warrior: try : while True : hasmat,opponant = map ( int , input ().split()) if (hasmat>...
10018 - Reverse and Add: test_case = int ( input ()) for i in range (test_case): n = input () for j in range ( 1 , 100 ): ...
113 - Power of Cryptography : try : while True : n = int ( input ()) k = int ( input ()) m = 1 /...
11332 - Summing Digits : try : while True : n = int ( input ()) if n == 0 : break ...
Difficult roads lead to beautiful destinations.