結果

問題 No.929 よくあるボールを移動するやつ
ユーザー htensaihtensai
提出日時 2019-12-09 21:50:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 571 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 2,660 ms
コンパイル使用メモリ 73,416 KB
実行使用メモリ 47,976 KB
最終ジャッジ日時 2024-06-23 06:35:03
合計ジャッジ時間 8,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
39,596 KB
testcase_01 AC 122 ms
40,764 KB
testcase_02 AC 126 ms
40,992 KB
testcase_03 AC 120 ms
40,940 KB
testcase_04 AC 123 ms
41,116 KB
testcase_05 AC 112 ms
39,596 KB
testcase_06 AC 136 ms
41,364 KB
testcase_07 AC 363 ms
47,572 KB
testcase_08 AC 480 ms
47,344 KB
testcase_09 AC 529 ms
47,796 KB
testcase_10 AC 502 ms
47,740 KB
testcase_11 AC 514 ms
47,860 KB
testcase_12 AC 571 ms
47,696 KB
testcase_13 AC 506 ms
47,348 KB
testcase_14 AC 524 ms
47,632 KB
testcase_15 AC 546 ms
47,976 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 remein = 0;
        long count = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt() + remein;
            remein = x - 1;
            count += Math.abs(remein);
        }
        System.out.println(count);
    }
}
0