mborm.net

Ein Computerprogramm tut was Du schreibst, nicht was Du willst.

Problem 50 auf projecteuler.net

Hier meine Brute Force Lösung zu Problem 50.

Befehl zum Compilieren und Ausführen sowie die Ausgabe mit Zeitmessung:


gcc -O3 -march=native -mtune=native -std=c11 -ffast-math -fopenmp Prob50.c -lm -o Prob50 && time ./Prob50
Result: 997651 with 543 terms

real 0m2.809s
user 0m16.577s
sys 0m0.012s

Und der Code:

Veröffentlicht am 21. Mai 2016 von admin in C, Programmierung, projecteuler