結果

問題 No.264 じゃんけん
コンテスト
ユーザー splash9494
提出日時 2020-05-02 02:29:03
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 186 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 531 ms
コンパイル使用メモリ 85,376 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2026-05-31 17:13:30
合計ジャッジ時間 1,667 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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