結果

問題 No.2559 眩しい数直線
ユーザー loop0919loop0919
提出日時 2023-11-27 23:40:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 76,612 KB
実行使用メモリ 45,204 KB
最終ジャッジ日時 2024-09-26 12:39:29
合計ジャッジ時間 9,308 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
41,548 KB
testcase_01 AC 165 ms
41,588 KB
testcase_02 AC 170 ms
41,552 KB
testcase_03 AC 231 ms
42,680 KB
testcase_04 AC 246 ms
42,868 KB
testcase_05 AC 256 ms
42,920 KB
testcase_06 AC 307 ms
44,136 KB
testcase_07 AC 291 ms
44,600 KB
testcase_08 AC 291 ms
45,204 KB
testcase_09 AC 273 ms
44,236 KB
testcase_10 AC 262 ms
43,344 KB
testcase_11 AC 202 ms
42,136 KB
testcase_12 AC 202 ms
42,252 KB
testcase_13 AC 306 ms
44,672 KB
testcase_14 AC 301 ms
44,804 KB
testcase_15 AC 306 ms
44,780 KB
testcase_16 AC 210 ms
41,940 KB
testcase_17 AC 280 ms
43,964 KB
testcase_18 AC 264 ms
43,840 KB
testcase_19 AC 305 ms
44,108 KB
testcase_20 AC 268 ms
43,832 KB
testcase_21 AC 217 ms
42,324 KB
testcase_22 AC 289 ms
43,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int N = sc.nextInt();
        int X = sc.nextInt();
        
        int[] A = new int[N];
        int[] B = new int[N];
        
        for (int i = 0; i < N; i++) {
            A[i] = sc.nextInt();
            B[i] = sc.nextInt();
        }
        
        for (int x = 1; x <= X; x++) {
            int maxVal = 0;
            for (int i = 0; i < N; i++) {
                maxVal = Math.max(B[i] - Math.abs(x - A[i]), maxVal);
            }
            System.out.print(maxVal + " ");
        }
    }
}
0