結果

問題 No.2921 Seated in Classroom
ユーザー 👑 obakyanobakyan
提出日時 2024-11-07 22:33:04
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 22:33:07
合計ジャッジ時間 1,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
5,248 KB
testcase_01 AC 59 ms
5,248 KB
testcase_02 AC 44 ms
5,248 KB
testcase_03 AC 108 ms
5,248 KB
testcase_04 AC 95 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q = io.read("*n")
for iq = 1, q do
  a, b = io.read("*n", "*n")
  c = math.ceil(a / 4)
  d = math.ceil((a + b) / 8)
  print(math.max(c, d))
end
0