How to reduce time of execution? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to reduce time of execution?

class Program { static void Main () { int number = int.Parse (Console.ReadLine ()); int S = 0, A = 0, P = 0, V = 0; for (int i = 0; i < number; i++) { V++; if (V == 4) { V = 0; P++; if (P == 4) { P = 0; A++; if (A == 3) { A = 0; S++; } } } } Console.WriteLine ("{0} {1} {2} {3}", S, A, P, V); }

14th Sep 2018, 6:32 PM
Evgenii Shiliaev
Evgenii Shiliaev - avatar
2 Answers
+ 1
you can remove the "A++;" and "P++;" parts and just modify the if statements to be "if(++P == 4)" and "if(++A == 3)" to make the code shorter too
14th Sep 2018, 7:02 PM
hinanawi
hinanawi - avatar
0
I have already got it! My solution class Program { static void Main () { int number = int.Parse (Console.ReadLine ()); int S = 0, A = 0, P = 0, V = number % 4; number = (number - V) / 4; while (number != 0) { P++; if (P == 4) { P = 0; A++; if (A == 3) { A = 0; S++; } } number--; } Console.WriteLine ("{0} {1} {2} {3}", S, A, P, V); } }
14th Sep 2018, 6:49 PM
Evgenii Shiliaev
Evgenii Shiliaev - avatar