結果

問題 No.264 じゃんけん
ユーザー 👑 colognecologne
提出日時 2023-06-14 13:59:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 68 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 87,000 KB
実行使用メモリ 71,440 KB
最終ジャッジ日時 2023-09-05 02:23:24
合計ジャッジ時間 1,941 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 69 ms
71,388 KB
testcase_02 AC 70 ms
71,172 KB
testcase_03 AC 72 ms
71,400 KB
testcase_04 WA -
testcase_05 AC 71 ms
71,284 KB
testcase_06 AC 71 ms
71,412 KB
testcase_07 AC 72 ms
71,168 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
print(['Draw', 'Lost', 'Won'][(a-b)%3])
0