結果
問題 | No.2921 Seated in Classroom |
ユーザー | yumechi |
提出日時 | 2024-10-26 16:44:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 218 bytes |
コンパイル時間 | 320 ms |
コンパイル使用メモリ | 82,588 KB |
実行使用メモリ | 78,600 KB |
最終ジャッジ日時 | 2024-10-26 16:44:49 |
合計ジャッジ時間 | 4,945 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 35 ms
53,952 KB |
testcase_06 | WA | - |
ソースコード
import math for _ in [0]*int(input()): n, m = map(int, input().split(" ")) t_ans, mod = math.ceil(n/4), n%4 m -= mod m_ans = math.ceil(m/4) if m_ans > t_ans: t_ans += math.ceil((m_ans - t_ans) / 2) print(t_ans)