結果
| 問題 | No.2960 Judgement |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-11-16 15:32:28 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 777 ms |
| コード長 | 510 bytes |
| 記録 | |
| コンパイル時間 | 1,059 ms |
| コンパイル使用メモリ | 215,948 KB |
| 実行使用メモリ | 9,204 KB |
| 最終ジャッジ日時 | 2026-07-06 04:00:54 |
| 合計ジャッジ時間 | 2,280 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
vector<string> a = {
"AC",
"WA",
"RE",
"NoOut",
"NoSub"
};
int cnt = 0;
for(int i = 0; i < 8; i++){
string s;
cin >> s;
cnt += (s == "AC" || s == "NoOut");
}
if(cnt >= 6){
cout << "Win\n";
}else if(cnt == 5){
cout << "Draw\n";
}else{
cout << "Lose\n";
}
}