結果
問題 | No.2921 Seated in Classroom |
ユーザー | kusirakusira |
提出日時 | 2024-08-25 01:49:35 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 222 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 82,788 KB |
実行使用メモリ | 66,600 KB |
最終ジャッジ日時 | 2024-08-27 21:47:41 |
合計ジャッジ時間 | 1,799 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 = ceil(m - (2 * w * a - n), 2 * w) ans = max(a, a + b) print(ans)