Submission #669121

# Submission time Handle Problem Language Result Execution time Memory
669121 2022-12-05T19:21:17 Z Toxtaq Cluedo (IOI10_cluedo) C++17
Compilation error
0 ms 0 KB
#include "grader.h"
#include<bits/stdc++.h>
tuple<int, int, int> Solve(){
    for(int i = 1;i <= 6;++i){
        for(int j = 1;j <= 10;++j){
            for(int k = 1;k <= 6;++k){
                if(!Theory(i, j, k) == 0)return {i, j, k};
            }
        }
    }
}

Compilation message

cluedo.cpp:3:1: error: 'tuple' does not name a type
    3 | tuple<int, int, int> Solve(){
      | ^~~~~