結果

問題 No.1850 Rewrite Product
ユーザー pengin_2000
提出日時 2022-04-15 15:46:06
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 948 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 20:55:04
合計ジャッジ時間 1,847 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main()
{
	int t;
	scanf("%d", &t);
	int x, y;
	for (; t > 0; t--)
	{
		scanf("%d %d", &x, &y);
		if (x >= y)
			printf("Yes\n");
		else if (x > 4)
			printf("Yes\n");
		else
			printf("No\n");
	}
	return 0;
}
0