結果

問題 No.264 じゃんけん
ユーザー splash9494
提出日時 2020-05-02 02:29:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-12-26 00:06:20
合計ジャッジ時間 1,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

me, op = map(int, input().split())

if me + 1 % 3 == op:
    print('Lost')
elif me % 3 == op:
    print('Drew')
else:
    print('Won')
    
0