結果
| 問題 |
No.264 じゃんけん
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-22 10:17:23 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 5,000 ms |
| コード長 | 321 bytes |
| コンパイル時間 | 262 ms |
| コンパイル使用メモリ | 11,904 KB |
| 実行使用メモリ | 10,240 KB |
| 最終ジャッジ日時 | 2025-01-03 07:59:20 |
| 合計ジャッジ時間 | 1,286 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 |
ソースコード
# coding:utf-8
i, y = map(int, input().split())
if i == y:
print("Drew")
elif i == 0:
if y == 1:
print("Won")
else:
print("Lost")
elif i == 1:
if y == 2:
print("Won")
else:
print("Lost")
elif i == 2:
if y == 0:
print("Won")
else:
print("Lost")