結果
| 問題 |
No.264 じゃんけん
|
| コンテスト | |
| ユーザー |
splash9494
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 |
ソースコード
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')
splash9494