結果
| 問題 |
No.3171 Color Restoration
|
| コンテスト | |
| ユーザー |
ゼリトキ
|
| 提出日時 | 2025-06-06 21:26:59 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 904 bytes |
| コンパイル時間 | 3,553 ms |
| コンパイル使用メモリ | 286,720 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2025-06-06 21:27:04 |
| 合計ジャッジ時間 | 4,523 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
#define ll long long
const long long mod=998244353;
const long long hmod=46216567629137;
int main(){
cin.tie(0)->sync_with_stdio(0);
cout.tie(0);
string one[8]={"gray","brown","green","cyan","blue","yellow","orange","red"};
string two[5]={"gray","green","blue","yellow","red"};
string three[7]={"gray","green","cyan","blue","violet","orange","red"};
int cnt=0;
vector<string>S(3);
rep(i,3) cin>>S[i];
sort(S.begin(),S.end());
do{
rep(i,8){
rep(j,5){
rep(k,7){
if(S[0]==one[i] && S[1]==two[j] && S[2]==three[k]){
cnt++;
}
}
}
}
}while(next_permutation(S.begin(),S.end()));
if(cnt==1) cout<<"Yes\n";
else cout<<"No\n";
}
ゼリトキ