結果
問題 | No.2960 Judgement |
ユーザー |
![]() |
提出日時 | 2025-01-03 22:46:38 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 777 ms |
コード長 | 355 bytes |
コンパイル時間 | 762 ms |
コンパイル使用メモリ | 61,496 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2025-01-03 22:46:40 |
合計ジャッジ時間 | 1,609 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 |
ソースコード
#include <stdio.h> #include <iostream> #include <string> using namespace std; int main() { string sTmp; int iCount=0; for(int i=0; i<8; i++){ cin >> sTmp; if (sTmp == "AC" || sTmp == "NoOut") { iCount++; } } if (iCount > 5) { cout << "Win"; } if (iCount == 5) { cout << "Draw"; } if (iCount < 5) { cout << "Lose"; } return 0; }