結果

問題 No.2960 Judgement
ユーザー friedrice
提出日時 2024-11-18 20:14:55
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 777 ms
コード長 336 bytes
コンパイル時間 3,001 ms
コンパイル使用メモリ 244,776 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 20:14:59
合計ジャッジ時間 3,959 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
  }
}
0