結果

問題 No.2960 Judgement
ユーザー nouka28
提出日時 2024-11-16 16:42:38
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 777 ms
コード長 402 bytes
コンパイル時間 5,593 ms
コンパイル使用メモリ 307,660 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-16 16:42:46
合計ジャッジ時間 6,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#include<atcoder/all>
using namespace atcoder;
using mint=atcoder::modint998244353;

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#define int long long

signed main(){
	string s;
	int cnt=0;
	while(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