結果
| 問題 | No.264 じゃんけん |
| コンテスト | |
| ユーザー |
sinofseven
|
| 提出日時 | 2020-02-14 17:32:34 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 223 bytes |
| 記録 | |
| コンパイル時間 | 58 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 13,440 KB |
| 最終ジャッジ日時 | 2026-09-11 01:23:44 |
| 合計ジャッジ時間 | 1,978 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 9 |
ソースコード
results = {
'0 0\n': 'Drew',
'1 1\n': 'Drew',
'2 2\n': 'Drew',
'0 1\n': 'Won',
'0 2\n': 'Lost',
'1 0\n': 'Lost',
'1 2\n': 'Won',
'2 0\n': 'Won',
'2 1\n': 'Lost'
}
print(results[input()])
sinofseven