結果

問題 No.1850 Rewrite Product
ユーザー loop0919loop0919
提出日時 2023-09-24 01:48:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 497 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 76,576 KB
最終ジャッジ日時 2024-07-17 01:46:08
合計ジャッジ時間 1,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,596 KB
testcase_01 AC 497 ms
76,576 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