結果

問題 No.264 じゃんけん
ユーザー mojamojammojamojam
提出日時 2020-12-25 02:33:43
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 11,744 KB
実行使用メモリ 10,080 KB
最終ジャッジ日時 2023-10-21 16:13:19
合計ジャッジ時間 1,274 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 28 ms
10,040 KB
testcase_03 AC 27 ms
10,040 KB
testcase_04 WA -
testcase_05 AC 27 ms
10,040 KB
testcase_06 AC 24 ms
10,040 KB
testcase_07 AC 25 ms
10,040 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
if (n == k):
    print("Draw")
elif (n == 2 and k == 0 or n == 1 and k == 2):
    print("Won")
else:
    print("Lost")
    
0