結果

問題 No.2960 Judgement
ユーザー prin_kemkemprin_kemkem
提出日時 2024-11-18 12:30:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 777 ms
コード長 222 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 56,672 KB
最終ジャッジ日時 2024-11-18 12:30:18
合計ジャッジ時間 2,120 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,108 KB
testcase_01 AC 45 ms
56,104 KB
testcase_02 AC 44 ms
55,052 KB
testcase_03 AC 46 ms
55,416 KB
testcase_04 AC 45 ms
56,672 KB
testcase_05 AC 49 ms
56,576 KB
testcase_06 AC 45 ms
55,688 KB
testcase_07 AC 45 ms
56,240 KB
testcase_08 AC 46 ms
55,040 KB
testcase_09 AC 45 ms
56,492 KB
testcase_10 AC 45 ms
55,736 KB
testcase_11 AC 44 ms
54,976 KB
testcase_12 AC 44 ms
55,488 KB
testcase_13 AC 46 ms
56,144 KB
testcase_14 AC 45 ms
55,824 KB
testcase_15 AC 45 ms
55,692 KB
testcase_16 AC 45 ms
55,752 KB
testcase_17 AC 44 ms
54,988 KB
testcase_18 AC 45 ms
54,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache

#################################################   

S = list(input().split())
cnt = 0
for s in S:
    cnt += (s=="AC" or s=="NoOut")
print('Win' if cnt > 5 else 'Lose' if cnt < 5 else 'Draw')
0