結果

問題 No.1129 Rating じゃんけん
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2020-12-11 13:38:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 53,608 KB
最終ジャッジ日時 2023-10-20 01:27:35
合計ジャッジ時間 1,652 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,448 KB
testcase_01 AC 38 ms
53,448 KB
testcase_02 AC 37 ms
53,448 KB
testcase_03 AC 37 ms
53,448 KB
testcase_04 AC 37 ms
53,448 KB
testcase_05 AC 36 ms
53,448 KB
testcase_06 AC 36 ms
53,448 KB
testcase_07 AC 37 ms
53,448 KB
testcase_08 AC 38 ms
53,448 KB
testcase_09 AC 41 ms
53,448 KB
testcase_10 AC 36 ms
53,448 KB
testcase_11 AC 36 ms
53,448 KB
testcase_12 AC 36 ms
53,448 KB
testcase_13 AC 37 ms
53,448 KB
testcase_14 WA -
testcase_15 AC 37 ms
53,448 KB
testcase_16 AC 36 ms
53,448 KB
testcase_17 AC 38 ms
53,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d=map(int,input().split())
if a!=c:
	print('ntuRlule'[a<c::2])
elif b==d:
	print('Draw')
else:
	print('ntuRlule'[b-d>0 or b-d==-2::2])
0