結果

問題 No.264 じゃんけん
ユーザー ノットカワズノットカワズ
提出日時 2016-05-10 05:36:48
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 75,692 KB
最終ジャッジ日時 2024-10-05 13:22:42
合計ジャッジ時間 1,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,560 KB
testcase_01 AC 72 ms
75,548 KB
testcase_02 AC 73 ms
75,420 KB
testcase_03 AC 72 ms
75,692 KB
testcase_04 AC 73 ms
75,544 KB
testcase_05 AC 72 ms
75,676 KB
testcase_06 AC 73 ms
75,676 KB
testcase_07 AC 73 ms
75,552 KB
testcase_08 AC 72 ms
75,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding:utf-8 -*-

N, K = map(int, raw_input().split())

def janken(N, K):
    if N == K:
        return "Drew"
    elif (N == 0 and K == 1) or (N == 1 and K == 2) or (N == 2 and K == 0):
        return "Won"
    else:
        return "Lost"

print janken(N, K)
0