結果
問題 | No.1317 月曜日の朝、WAを出した |
ユーザー | k |
提出日時 | 2020-12-23 19:13:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 26 ms / 1,500 ms |
コード長 | 647 bytes |
コンパイル時間 | 2,156 ms |
コンパイル使用メモリ | 206,756 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-21 16:29:29 |
合計ジャッジ時間 | 2,693 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 26 ms
6,944 KB |
testcase_02 | AC | 26 ms
6,948 KB |
testcase_03 | AC | 26 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) bool solve() { vector<int> b(6), a(6); REP (i, 6) cin >> b[i]; REP (i, 6) cin >> a[i]; string x; cin >> x; vector<string> s{"AC", "WA", "TLE", "MLE", "OLE", "RE"}; int p = find(s.begin(), s.end(), x) - s.begin(); if (b[p]) return false; for (int i = 1; i < 6; i++) if (i != p && a[i]) return false; return true; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; while (n--) { if (solve()) cout << "Yes" << endl; else cout << "No" << endl; } return 0; }