結果
問題 | No.2921 Seated in Classroom |
ユーザー | kusirakusira |
提出日時 | 2024-08-27 20:29:27 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 351 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 66,656 KB |
最終ジャッジ日時 | 2024-08-27 21:47:42 |
合計ジャッジ時間 | 1,149 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 if((1 <= t <= 2*10**5) == False): print("WA") for i in range(t): w, n, m = map(int,input().split()) if((1<= min(w,n,m) <= max(w,n,m) <= 10**18) == False): print("WA") a = ceil(n, 4) b = (2 * w * a - n) c = ceil(m - b, 2 * w) ans = max(a, a + c) print(ans)