結果

問題 No.1129 Rating じゃんけん
ユーザー shimon
提出日時 2024-06-10 16:28:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 53,668 KB
最終ジャッジ日時 2025-01-02 09:05:21
合計ジャッジ時間 1,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d = map(int, input().split())
res = ['null', 'tRue', 'Draw']
if a == c:
    if b == d:
        print(res[2])
    else:
        print(res[(d + 1) % 3 == b])
else:
    print(res[a < c])
0