結果

問題 No.2960 Judgement
ユーザー toshiro_yanagi
提出日時 2025-04-02 06:53:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 38 ms / 777 ms
コード長 287 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2025-04-02 06:53:34
合計ジャッジ時間 2,012 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

def fun(s):
    cnt = 0
    for si in s:
        if si in {"AC", "NoOut"}:
            cnt += 1
    res = "Lose"
    for k, v in {
        6: "Win",
        5: "Draw",
    }.items():
        if cnt >= k:
            res = v
            break
    return res


print(fun(input().split()))
0