Language
C++
Compiler
gcc HEAD 13.0.0 20220809 (experimental)
Options
Warnings
Optimization
Don't Use Boost
C++2b(GNU)
no pedantic
Raw compiler options
-O3
$ g++ prog.cc -Wall -Wextra -O2 -march=native -std=gnu++2b -O31 2 3 4 5 6 7 8 9
3 4 5 6 7 8 9
1 2 3
9 8 7 6 5 4 3 2 1
6 5 4 3 2 1
1 2 3 4 5 8 9 7 6
1 2 3 4 5 8 9 7 6
132 64 77889 26 55
1 2 3 4 5 6 7 8 9
4 5 6 7 8 9
1 4 9 16 25 64 81 49 36
1 3 5 9 7
1 9 25 81 49
Exit Code:
0