結果

問題 No.264 じゃんけん
ユーザー takopom55
提出日時 2016-11-30 08:50:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 218 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-27 13:52:14
合計ジャッジ時間 813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def main():
    me, you = [int(x) for x in input().split()]
    result = (you - me + 3) % 3
    message = ['Drew','Won','Lost']
    print(message[result])

if __name__ == '__main__':
    main()
0