結果

問題 No.264 じゃんけん
ユーザー sasakitikiti
提出日時 2016-08-02 10:05:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 178 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-06 23:35:55
合計ジャッジ時間 1,161 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=(int(i) for i in input().split())
g=0
c=1
p=2

if n==m:
    print("Drew")
elif (n==g and m==c) or (n==c and m==p) or (n==p and m==g):
    print("Won")
else:
    print("Lost")
0