結果

問題 No.2960 Judgement
ユーザー YU Hirose
提出日時 2025-04-15 18:05:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 777 ms
コード長 177 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 53,980 KB
最終ジャッジ日時 2025-04-15 18:05:59
合計ジャッジ時間 2,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input().split()
cnt = 0
for c in s:
    if c == "AC" or c == "NoOut":
        cnt += 1
if cnt >= 6:
    print("Win")
elif cnt == 5:
    print("Draw")
else:
    print("Lose")
0