結果
| 問題 | No.1850 Rewrite Product |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-07 11:50:36 |
| 言語 | Lua (LuaJit 2.1.1774638290) |
| 結果 |
AC
|
| 実行時間 | 59 ms / 2,000 ms |
| + 903µs | |
| コード長 | 152 bytes |
| 記録 | |
| コンパイル時間 | 4 ms |
| コンパイル使用メモリ | 9,692 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-22 23:57:15 |
| 合計ジャッジ時間 | 1,609 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 |
ソースコード
local q = io.read("*n")
for iq = 1, q do
local x, y = io.read("*n", "*n")
if y <= x or 4 < x then
print("Yes")
else
print("No")
end
end