結果

問題 No.1850 Rewrite Product
ユーザー loop0919loop0919
提出日時 2023-09-24 01:48:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 565 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 749 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 77,852 KB
最終ジャッジ日時 2023-09-24 01:48:18
合計ジャッジ時間 2,016 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
71,216 KB
testcase_01 AC 565 ms
77,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import系 ---
from collections import Counter

# 入力用 ---
INT = lambda: int(input())
MI = lambda: map(int, input().split())
MI_DEC = lambda: map(lambda x: int(x) - 1, input().split())
LI = lambda: list(map(int, input().split()))
LI_DEC = lambda: list(map(lambda x: int(x) - 1, input().split()))
LS = lambda: list(input())
LSS = lambda: input().split()

MOD = 998244353

# コード ---
T = INT()

for _ in range(T):
    X, Y = MI()
    if X >= 5:
        print("Yes")
        
    else:
        if X >= Y:
            print("Yes")
        else:
            print("No")
0