I try to solve problem SEQN.
My program works about 0.3 sec in my computer with "-O2" or "-O3" optimization option (in that task it's need 3 seconds)
But with option "-O0" (or without any optimizations) it run about 1 minute.
So, when I submit my solution, I hope that it pass, but it return TLE!
(in spite of {-# OPTIONS_GHC -O3 -optc-O3 #-} in header)
How can I set up options for submit?