結果

問題 No.370 道路の掃除
ユーザー yun_appyun_app
提出日時 2016-05-17 10:14:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,172 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 77,744 KB
実行使用メモリ 37,052 KB
最終ジャッジ日時 2024-10-06 05:10:32
合計ジャッジ時間 5,332 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,748 KB
testcase_01 AC 52 ms
36,876 KB
testcase_02 AC 53 ms
36,648 KB
testcase_03 AC 50 ms
36,488 KB
testcase_04 AC 51 ms
36,900 KB
testcase_05 AC 51 ms
36,664 KB
testcase_06 AC 50 ms
36,820 KB
testcase_07 AC 51 ms
36,844 KB
testcase_08 AC 51 ms
36,388 KB
testcase_09 AC 51 ms
36,844 KB
testcase_10 AC 52 ms
36,892 KB
testcase_11 AC 51 ms
36,472 KB
testcase_12 AC 51 ms
36,700 KB
testcase_13 AC 51 ms
36,648 KB
testcase_14 AC 52 ms
36,992 KB
testcase_15 AC 52 ms
36,884 KB
testcase_16 AC 53 ms
36,664 KB
testcase_17 AC 52 ms
36,708 KB
testcase_18 AC 51 ms
36,692 KB
testcase_19 AC 50 ms
36,636 KB
testcase_20 AC 54 ms
36,888 KB
testcase_21 AC 55 ms
36,972 KB
testcase_22 AC 53 ms
36,640 KB
testcase_23 AC 55 ms
36,844 KB
testcase_24 AC 51 ms
36,860 KB
testcase_25 AC 54 ms
36,648 KB
testcase_26 AC 56 ms
36,876 KB
testcase_27 AC 54 ms
36,828 KB
testcase_28 AC 54 ms
36,512 KB
testcase_29 AC 54 ms
36,660 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] line = br.readLine().split(" ");
        int N = Integer.parseInt(line[0]);
        int M = Integer.parseInt(line[1]);
        
        ArrayList<Integer> gomi = new ArrayList<Integer>();
        for(int i=0;i<M;i++){
            gomi.add(Integer.parseInt(br.readLine()));
        }
        
        int ans = Integer.MAX_VALUE;
        for(int i=0;i<M-N+1;i++){
            int sum = 0;
            if((gomi.get(i) < 0 && gomi.get(i+N-1) > 0) 
            || (gomi.get(i) > 0 && gomi.get(i+N-1) < 0)){
                sum += 2*Math.min(Math.abs(gomi.get(i)),Math.abs(gomi.get(i+N-1)));
            }
            sum += Math.max(Math.abs(gomi.get(i)),Math.abs(gomi.get(i+N-1)));
            ans = Math.min(ans,sum);
        }
        System.out.println(ans);
    }
}
0