結果
問題 | No.264 じゃんけん |
ユーザー | R N |
提出日時 | 2020-07-22 07:41:49 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 239 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 12,032 KB |
実行使用メモリ | 10,240 KB |
最終ジャッジ日時 | 2025-01-02 18:47:33 |
合計ジャッジ時間 | 1,169 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,112 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 26 ms
9,984 KB |
testcase_04 | AC | 27 ms
10,240 KB |
testcase_05 | AC | 27 ms
9,984 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 26 ms
10,240 KB |
ソースコード
# coding:utf-8 y, i = map(int, input().split()) if y == i: print("Drew") elif y > i and i == 0: print("Lost") elif y > i and i == 1: print("Won") elif y < i and i == 1: print("Lost") elif y < i and i == 2: print("Won")