結果
| 問題 | No.264 じゃんけん |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-28 01:01:40 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 492 bytes |
| 記録 | |
| コンパイル時間 | 774 ms |
| コンパイル使用メモリ | 14,976 KB |
| 実行使用メモリ | 13,696 KB |
| 最終ジャッジ日時 | 2026-09-21 15:26:58 |
| 合計ジャッジ時間 | 1,617 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge5_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 9 |
ソースコード
import random
N = int(input())
K = int(input())
if N == 0:
if N - K == 0:
print('Drew')
elif N - K == -1:
print('Won')
elif N - K == -2:
print('Lost')
elif N == 1:
if N - K == 0:
print('Drew')
elif N - K == 1:
print('Lost')
elif N - K == -1:
print('Won')
elif N == 2:
if N - K == 0:
print('Drew')
elif N - K == 2:
print('Won')
elif N - K == 1:
print('Lost')