Submission #1132186

#TimeUsernameProblemLanguageResultExecution timeMemory
1132186finalventureCluedo (IOI10_cluedo)C++17
50 / 100
3 ms408 KiB
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"

using namespace std;

void Solve(){
   vector<int> arr{0, 6, 10, 6};
   int x = Theory(arr[1], arr[2], arr[3]);
   while(x)
   {
      x = Theory(arr[1], arr[2], arr[3]);
      --arr[x];
   }
   return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...