結果
| 問題 | No.1129 Rating じゃんけん |
| ユーザー |
|
| 提出日時 | 2021-02-23 15:22:56 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 2,000 ms |
| コード長 | 165 bytes |
| 記録 | |
| コンパイル時間 | 121 ms |
| コンパイル使用メモリ | 84,876 KB |
| 実行使用メモリ | 52,120 KB |
| 最終ジャッジ日時 | 2026-04-10 17:07:04 |
| 合計ジャッジ時間 | 1,637 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 16 |
ソースコード
A, B, C, D = map(int, input().split())
if A > C:
print("null")
elif A < C:
print("tRue")
else:
res = ["Draw", "null", "tRue"]
print(res[(D - B) % 3])