# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
941199 | guymmk | Cluedo (IOI10_cluedo) | C++14 | 7 ms | 596 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;
#define int long long
#define ll long long
#define endl "\n"
#define F first
#define S second
#define pb push_back
#define pop pop_back
#define pii pair<int,int>
#define all(x) x.begin(),x.end()
#define mustawa ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr)
#define mishari main
const int inf=1e9+7;
void usaco(string s){
freopen((s + ".in").c_str(), "r", stdin);
freopen((s + ".out").c_str(), "w", stdout);
}
void Solve(){
bool m[7]={},l[11]={},w[7]={};
for(int i=1;i<=6;i++){
for(int j=1;j<=10;j++){
for(int k=1;k<=6;k++){
if(m[i]||l[j]||w[k])continue;
int x=Theory(i,j,k);
if(x!=0){
if(x==1)m[i]=1;
else if(x==2)l[j]=1;
else w[k]=1;
continue;
}
return;
}
}
}
}
//signed mishari() {
// mustawa;
// //usaco("whereami");
// int t = 1;
// //cin>>t;
// while (t--)solve();
//}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |