結果
| 問題 | No.2960 Judgement |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-01-01 22:23:40 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 777 ms |
| コード長 | 434 bytes |
| 記録 | |
| コンパイル時間 | 1,088 ms |
| コンパイル使用メモリ | 209,692 KB |
| 実行使用メモリ | 5,760 KB |
| 最終ジャッジ日時 | 2026-07-06 10:37:19 |
| 合計ジャッジ時間 | 2,426 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<n;i++)
#define rep2(i,s,t) for(int i=s;i<t;i++)
int main() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
int cnt=0;
rep(i,8){
string S;
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;
}