結果
| 問題 | No.2960 Judgement |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-11-18 20:14:55 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 777 ms |
| コード長 | 336 bytes |
| 記録 | |
| コンパイル時間 | 2,245 ms |
| コンパイル使用メモリ | 330,544 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-13 06:57:58 |
| 合計ジャッジ時間 | 3,209 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int cnt = 0;
string S;
for(int i = 0; i < 8; i++) {
cin >> S;
if(S == "AC" || S == "NoOut") {
cnt++;
}
}
if(cnt >= 6) {
cout << "Win" << endl;
}
else if(cnt == 5) {
cout << "Draw" << endl;
}
else {
cout << "Lose" << endl;
}
}