結果

問題 No.1129 Rating じゃんけん
ユーザー otsunekootsuneko
提出日時 2021-05-14 15:25:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 53,548 KB
最終ジャッジ日時 2024-04-09 19:47:58
合計ジャッジ時間 1,581 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,580 KB
testcase_01 AC 35 ms
53,548 KB
testcase_02 AC 36 ms
52,644 KB
testcase_03 AC 33 ms
52,468 KB
testcase_04 AC 35 ms
52,060 KB
testcase_05 AC 33 ms
53,384 KB
testcase_06 AC 34 ms
51,680 KB
testcase_07 AC 36 ms
52,316 KB
testcase_08 AC 33 ms
52,484 KB
testcase_09 AC 34 ms
52,352 KB
testcase_10 AC 33 ms
52,488 KB
testcase_11 AC 35 ms
52,360 KB
testcase_12 AC 35 ms
52,336 KB
testcase_13 AC 36 ms
51,820 KB
testcase_14 AC 34 ms
52,692 KB
testcase_15 AC 34 ms
51,944 KB
testcase_16 AC 33 ms
52,776 KB
testcase_17 AC 34 ms
53,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C,D = map(int,input().split())
if A > C:
    print("null")
elif A < C:
    print("tRue")
else:
    if B == D:
        print("Draw")
    else:
        if (B-D+1)%3 == 0:
            print("null")
        else:
            print("tRue")
0