結果
問題 | No.2921 Seated in Classroom |
ユーザー | kusirakusira |
提出日時 | 2024-08-25 20:58:47 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 305 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 66,800 KB |
最終ジャッジ日時 | 2024-08-27 21:47:41 |
合計ジャッジ時間 | 1,768 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
ソースコード
t = int(input()) def ceil(a, b): return (a+b-1)//b for i in range(t): w, n, m = map(int,input().split()) a = ceil(n, 4) b = (2 * w * a - n) c = ceil(m - b, 2 * w) ans = max(a, a + c) print(ans)