結果

問題 No.929 よくあるボールを移動するやつ
ユーザー 37zigen37zigen
提出日時 2019-11-23 01:33:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 75,276 KB
実行使用メモリ 49,696 KB
最終ジャッジ日時 2024-10-11 06:43:34
合計ジャッジ時間 8,997 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,136 KB
testcase_01 AC 132 ms
41,144 KB
testcase_02 AC 133 ms
41,272 KB
testcase_03 AC 134 ms
41,000 KB
testcase_04 AC 135 ms
41,016 KB
testcase_05 AC 134 ms
41,108 KB
testcase_06 AC 148 ms
41,424 KB
testcase_07 AC 407 ms
47,836 KB
testcase_08 AC 606 ms
48,684 KB
testcase_09 AC 552 ms
49,696 KB
testcase_10 AC 554 ms
49,524 KB
testcase_11 AC 549 ms
48,492 KB
testcase_12 AC 539 ms
48,532 KB
testcase_13 AC 629 ms
48,724 KB
testcase_14 AC 548 ms
48,800 KB
testcase_15 AC 581 ms
48,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
import java.io.*;

class Main
{
    public static void main(String[] args)
    {
        new Main().run();
    }
    
    void run() {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        long[] B = new long[N];
        for (int i = 0; i < N; ++i) {
            B[i] = sc.nextLong();
        }
        long ans = 0;
        long a = 0;
        for (int i = 0; i < N; ++i) {
            ans += Math.abs(a);
            a += B[i] - 1;
        }
        System.out.println(ans);
            
    }
    
    void tr(Object...o){
        System.out.println(Arrays.deepToString(o));
    }

    
}
0