結果

問題 No.2921 Seated in Classroom
ユーザー viral8viral8
提出日時 2024-10-14 22:14:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,789 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 58,440 KB
最終ジャッジ日時 2024-10-14 22:15:14
合計ジャッジ時間 13,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,644 ms
58,328 KB
testcase_01 AC 1,229 ms
58,068 KB
testcase_02 AC 1,099 ms
57,720 KB
testcase_03 AC 1,789 ms
58,440 KB
testcase_04 AC 1,681 ms
58,300 KB
testcase_05 AC 113 ms
41,060 KB
testcase_06 AC 120 ms
40,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.HashMap;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int T = sc.nextInt();
		while(T-->0){
			int N = sc.nextInt();
			int M = sc.nextInt();
			int ans1 = (N+3)/4;
			M -= N%4==0?0:4-N%4;
			M -= ans1*4;
			System.out.println(ans1+Math.max(0,(M+7)/8));
		}
	}
}
0