結果
問題 | No.2921 Seated in Classroom |
ユーザー | Hyoka7 |
提出日時 | 2024-10-12 14:56:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 405 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 77,312 KB |
最終ジャッジ日時 | 2024-10-12 14:56:50 |
合計ジャッジ時間 | 3,267 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 36 ms
51,584 KB |
testcase_06 | AC | 38 ms
51,968 KB |
ソースコード
t = int(input()) for i in range(t): charge, noncharge = map(int, input().split()) cs, ncs = 0, 0 cs += charge // 4 noncharge -= cs * 4 charge %= 4 if charge > 0: cs += 1 noncharge -= 8 - charge if noncharge <= 0: print(cs) else: cs += noncharge // 8 noncharge %= 8 if noncharge > 0: cs += 1 print(cs)