結果
| 問題 |
No.264 じゃんけん
|
| コンテスト | |
| ユーザー |
splash9494
|
| 提出日時 | 2020-05-02 02:28:09 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 186 bytes |
| コンパイル時間 | 700 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 52,096 KB |
| 最終ジャッジ日時 | 2024-12-26 00:04:29 |
| 合計ジャッジ時間 | 1,795 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 8 |
ソースコード
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')
splash9494