結果
問題 | No.264 じゃんけん |
ユーザー | mahiro |
提出日時 | 2020-01-11 17:32:00 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 82,400 KB |
実行使用メモリ | 54,488 KB |
最終ジャッジ日時 | 2024-11-25 05:06:07 |
合計ジャッジ時間 | 955 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 34 ms
52,800 KB |
testcase_02 | AC | 37 ms
53,644 KB |
testcase_03 | AC | 37 ms
53,256 KB |
testcase_04 | WA | - |
testcase_05 | AC | 35 ms
52,428 KB |
testcase_06 | AC | 35 ms
51,956 KB |
testcase_07 | AC | 35 ms
51,696 KB |
testcase_08 | WA | - |
ソースコード
N, K = [int(i) for i in input().split()] res = N - K if res == 0: ans = "Draw" elif res in (-1, 2): ans = "Won" else: ans = "Lost" print(ans)