結果

問題 No.264 じゃんけん
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-17 19:17:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 53,172 KB
最終ジャッジ日時 2024-09-14 05:05:54
合計ジャッジ時間 1,264 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
52,628 KB
testcase_02 AC 38 ms
52,360 KB
testcase_03 AC 39 ms
52,696 KB
testcase_04 AC 38 ms
53,100 KB
testcase_05 WA -
testcase_06 AC 38 ms
53,024 KB
testcase_07 AC 40 ms
52,444 KB
testcase_08 AC 38 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
if n == 0:
    if k == 0:
        print('Drew')
    elif k == 1:
        print('Won')
    else:
        print('Lost')
elif n == 1:
    if k == 0:
        print('Lost')
    elif k == 1:
        print('Drew')
    else:
        print('Lost')
else:
    if k == 0:
        print('Won')
    elif k == 1:
        print('Lost')
    else:
        print('Drew')
0