結果
問題 | No.1941 CHECKER×CHECKER(1) |
ユーザー | nyst |
提出日時 | 2022-05-20 21:35:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 979 bytes |
コンパイル時間 | 891 ms |
コンパイル使用メモリ | 99,912 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-20 07:28:18 |
合計ジャッジ時間 | 1,520 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <string> #include <map> #include <set> #include <fstream> #include <cmath> #include <stack> #include <queue> #include <iomanip> using namespace std; vector<int> dx{-1, 0, 0, 1}; vector<int> dy{ 0,-1, 1, 0}; int main(){ vector<vector<char>> S(3,vector<char>(3)); for(int i=0;i<3;i++) for(int j=0;j<3;j++) cin >> S[i][j]; for(int i=0;i<3;i++) { for(int j=0;j<3;j++){ for(int k = 0;k<dx.size();k++){ if(0<=i+dx[k] && i+dx[k]<3 && 0<=j+dy[k] && j+dy[k]<3){ if(S[i][j]=='#'){ if(S[j+dy[k]][i+dx[k]]=='.') continue; else { cout << "No"<< endl; return 0; } }else{ if(S[j+dy[k]][i+dx[k]]=='#') continue; else { cout << "No"<< endl; return 0; } } } } } } cout <<"Yes"<< endl; }