結果
| 問題 |
No.264 じゃんけん
|
| コンテスト | |
| ユーザー |
Python00391232
|
| 提出日時 | 2016-04-26 01:44:49 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 27 ms / 5,000 ms |
| コード長 | 294 bytes |
| コンパイル時間 | 110 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-10-04 15:50:53 |
| 合計ジャッジ時間 | 775 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 |
ソースコード
let = list(map(int, input().split(' ')))
N = let[0]
K = let[1]
if N == K:
print('Drew')
if N == 0:
if K == 1:
print('Won')
elif K == 2:
print('Lost')
if N == 1:
if K == 0:
print('Lost')
elif K == 2:
print('Won')
if N == 2:
if K == 0:
print('Won')
elif K == 1:
print('Lost')
Python00391232