結果
問題 | No.2921 Seated in Classroom |
ユーザー | lollipop |
提出日時 | 2024-10-12 16:56:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 424 bytes |
コンパイル時間 | 231 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 69,376 KB |
最終ジャッジ日時 | 2024-10-12 16:57:09 |
合計ジャッジ時間 | 6,835 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
ソースコード
T = int(input()) for _ in range(T): N, M = map(int,input().split()) k = 0 while N - 4*(k+1) >= 0: k += 1 m = N - 4*k if M <= 4*k: if m > 0: print(k+1) else : print(k) else: M -= 4*k M -= (8-m) k += 1 l = 0 while M - 8*(l+1) >= 0: l += 1 m = M - 8*l if m > 0: print(k+l+1) else : print(k+l)