結果

問題 No.2559 眩しい数直線
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2024-02-02 05:11:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 1,112 bytes
コンパイル時間 2,749 ms
コンパイル使用メモリ 79,720 KB
実行使用メモリ 55,040 KB
最終ジャッジ日時 2024-09-28 10:34:11
合計ジャッジ時間 7,833 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,896 KB
testcase_01 AC 124 ms
54,132 KB
testcase_02 AC 123 ms
54,252 KB
testcase_03 AC 151 ms
54,472 KB
testcase_04 AC 168 ms
54,436 KB
testcase_05 AC 177 ms
54,628 KB
testcase_06 AC 207 ms
54,852 KB
testcase_07 AC 192 ms
54,792 KB
testcase_08 AC 199 ms
54,880 KB
testcase_09 AC 195 ms
54,924 KB
testcase_10 AC 179 ms
54,732 KB
testcase_11 AC 117 ms
53,260 KB
testcase_12 AC 146 ms
54,252 KB
testcase_13 AC 199 ms
55,040 KB
testcase_14 AC 210 ms
54,780 KB
testcase_15 AC 210 ms
54,880 KB
testcase_16 AC 151 ms
54,256 KB
testcase_17 AC 196 ms
54,664 KB
testcase_18 AC 163 ms
54,428 KB
testcase_19 AC 209 ms
54,808 KB
testcase_20 AC 186 ms
54,508 KB
testcase_21 AC 147 ms
54,324 KB
testcase_22 AC 203 ms
54,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.*;

public class Main {

    public static void vectorPrint(Vector lis){

        PrintWriter out = new PrintWriter(System.out);
        for (int i=0 ; i<lis.size() ; i++){
            out.print(lis.get(i));
            if ( i != lis.size()-1){
                out.print(' ');
            }else{
                out.print('\n');
            }
        }
        out.flush();
    }

    public static void main(String[] args){

        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());
        int X = Integer.parseInt(sc.next());
        int[] A = new int[N];
        int[] B = new int[N];
        Vector anslis = new Vector();

        for (int i=0; i<N ; i++){
            A[i] = Integer.parseInt(sc.next());
            B[i] = Integer.parseInt(sc.next());
        }

        for (int j=1; j<=X ; j++){
            int ans = 0;
            for (int i=0; i<N ; i++){
                ans = Math.max(ans , B[i]-Math.abs(j-A[i]));
            }
            anslis.addElement(ans);
        }

        vectorPrint(anslis);
        
    }
}
0