結果

問題 No.264 じゃんけん
ユーザー splash9494splash9494
提出日時 2020-05-02 19:08:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 189 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2024-12-31 06:27:19
合計ジャッジ時間 1,448 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,228 KB
testcase_01 AC 37 ms
53,456 KB
testcase_02 AC 37 ms
53,104 KB
testcase_03 AC 37 ms
52,272 KB
testcase_04 AC 37 ms
52,968 KB
testcase_05 AC 38 ms
53,572 KB
testcase_06 AC 38 ms
53,352 KB
testcase_07 AC 39 ms
52,696 KB
testcase_08 AC 37 ms
53,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

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

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