結果

問題 No.2921 Seated in Classroom
ユーザー ks2mks2m
提出日時 2024-10-14 15:30:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 73,612 KB
実行使用メモリ 46,988 KB
最終ジャッジ日時 2024-10-14 15:30:47
合計ジャッジ時間 6,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 501 ms
46,900 KB
testcase_01 AC 399 ms
46,988 KB
testcase_02 AC 355 ms
46,084 KB
testcase_03 AC 526 ms
46,628 KB
testcase_04 AC 490 ms
45,916 KB
testcase_05 AC 51 ms
37,060 KB
testcase_06 AC 53 ms
36,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		for (int z = 0; z < t; z++) {
			String[] sa = br.readLine().split(" ");
			int n = Integer.parseInt(sa[0]);
			int m = Integer.parseInt(sa[1]);

			int v1 = (n + 3) / 4;
			int v2 = 4 - n % 4;
			if (v2 == 4) {
				v2 = 0;
			}
			int m2 = m - v2;
			int v3 = v1 * 4;
			int m3 = m2 - v3;
			if (m3 <= 0) {
				pw.println(v1);
			} else {
				pw.println(v1 + (m3 + 7) / 8);
			}
		}
		pw.flush();
		br.close();
	}
}
0