Result

WA

Duration

800ms

Code [DL]

using System;
using System.Linq;
class A{static void Main(){
string s;
for(int i=4;i>0;i--){
  s+=Console.ReadLine() + " ";
}
int[] a=s.Split(' ').Take(12).Select(Int32.Parse).ToArray();
foreach(int z in Enumerable.Range(0,8)){a[z]-=a[9+z%3];}
Console.Write(-(a[7]*(a[3]*a[2]-a[0]*a[5])+a[6]*(a[1]*a[5]-a[4]*a[2])+a[8]*(a[0]*a[4]-a[3]*a[1]))/6);
}}

stdin

42 01 47
05 22 48
47 40 53
69 94 42

stdout

Compilation failed: 2 error(s), 0 warnings

stderr

/tmp/code.cs(6,3): error CS0165: Use of unassigned local variable `s'
/tmp/code.cs(8,9): error CS0165: Use of unassigned local variable `s'
Cannot open assembly '/tmp/code.exe': No such file or directory.
rm: can't remove '/tmp/code.exe': No such file or directory

strace