結果
| 問題 | No.2960 Judgement |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2025-02-28 15:08:46 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 777 ms |
| コード長 | 415 bytes |
| 記録 | |
| コンパイル時間 | 1,075 ms |
| コンパイル使用メモリ | 210,616 KB |
| 実行使用メモリ | 9,200 KB |
| 最終ジャッジ日時 | 2026-07-06 11:12:16 |
| 合計ジャッジ時間 | 2,498 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF=0x3f3f3f3f;
const ll LLINF=0x3f3f3f3f3f3f3f3fLL;
const int MAX=3e5+10;
const int mod=998244353;
int main()
{
int n,i,cnt;
string s[11];
n=8;
cnt=0;
for(i=0;i<n;i++)
{
cin>>s[i];
if(s[i]=="AC") cnt++;
else if(s[i]=="NoOut") cnt++;
}
if(cnt>=6) puts("Win");
else if(cnt==5) puts("Draw");
else puts("Lose");
return 0;
}
vjudge1