結果

問題 No.2960 Judgement
ユーザー Tamiji153Tamiji153
提出日時 2024-11-28 22:51:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 119 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 53,636 KB
最終ジャッジ日時 2024-11-28 22:51:44
合計ジャッジ時間 1,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 33 ms
52,208 KB
testcase_02 AC 33 ms
52,088 KB
testcase_03 AC 33 ms
51,916 KB
testcase_04 AC 35 ms
52,832 KB
testcase_05 AC 38 ms
52,932 KB
testcase_06 AC 35 ms
52,684 KB
testcase_07 WA -
testcase_08 AC 32 ms
52,964 KB
testcase_09 AC 33 ms
52,048 KB
testcase_10 AC 32 ms
51,788 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 33 ms
52,096 KB
testcase_14 AC 32 ms
52,560 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 33 ms
53,072 KB
testcase_18 AC 33 ms
52,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input().split()
a=S.count('AC')+S.count('NoSub')
if a>5:
	print('Win')
elif a==5:
	print('Draw')
else:
	print('Lose')
0