fork download
  1. type m=array[1..1000000000] of int64;
  2. var x:m;
  3. i:longint;
  4. begin
  5. x[1]:=3;
  6. x[2]:=9;
  7. for i:=3 to 1000000000 do
  8. begin
  9. x[i]:=2*x[i-2]+x[i-1];
  10. if x[i] mod 23 = 0 then writeln(x[i],' ',i);
  11. end;
  12. end.
  13.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Free Pascal Compiler version 2.2.0 [2009/11/16] for i386
Copyright (c) 1993-2007 by Florian Klaempfl
Target OS: Linux for i386
Compiling prog.pas
prog.pas(1,37) Error: Data element too large
prog.pas(13) Fatal: There were 1 errors compiling module, stopping
Fatal: Compilation aborted
Error: /usr/bin/ppc386 returned an error exitcode (normal if you did not specify a source file to be compiled)
stdout
Standard output is empty