結果

問題 No.1129 Rating じゃんけん
ユーザー akitsugu777akitsugu777
提出日時 2020-07-28 16:42:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-28 20:46:37
合計ジャッジ時間 1,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 14 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C, D = map(int, input().split())
if A > C:
    print('null')
elif A < C:
    print('tRue')
else:
    if [B, D] == ([0, 1] or [1, 2] or [2, 0]):
        print('null')
    elif [B, D] == ([0, 2] or [2, 1] or [1, 0]):
        print('tRue')
    else:
        print('Draw')
0