Submission #512105

#TimeUsernameProblemLanguageResultExecution timeMemory
512105600MihneaCluedo (IOI10_cluedo)C++17
50 / 100
427 ms208 KiB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>

using namespace std;


void Solve(){
  int r;
  for (int i = 1; i <= 6; i++) {
    for (int j = 1; j <= 10; j++) {
      for (int k = 1; k <= 6; k++) {
        r = Theory(i, j, k);
      }
    }
  }
}

Compilation message (stderr)

cluedo.cpp: In function 'void Solve()':
cluedo.cpp:9:7: warning: variable 'r' set but not used [-Wunused-but-set-variable]
    9 |   int r;
      |       ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...