結果

問題 No.1129 Rating じゃんけん
ユーザー ああいい
提出日時 2022-05-15 09:09:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-07-23 21:12:00
合計ジャッジ時間 2,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d = map(int,input().split())


n = "null"
r = "tRue"
import sys
if a > c:
    print(n)
    exit()
if a < c:
    print(r)
    exit()

if b == d:
    print("Draw")
    exit()
if b == (d + 1) % 3:
    print(r)
else:
    print(n)
0