結果

問題 No.1765 While Shining
ユーザー merlinmerlin
提出日時 2021-11-26 22:34:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 54,952 KB
最終ジャッジ日時 2024-06-29 18:13:24
合計ジャッジ時間 6,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,960 KB
testcase_01 AC 52 ms
36,708 KB
testcase_02 AC 51 ms
36,812 KB
testcase_03 AC 52 ms
36,848 KB
testcase_04 AC 53 ms
36,840 KB
testcase_05 AC 52 ms
36,840 KB
testcase_06 AC 51 ms
36,476 KB
testcase_07 AC 52 ms
36,940 KB
testcase_08 AC 54 ms
36,600 KB
testcase_09 AC 180 ms
50,180 KB
testcase_10 AC 227 ms
53,684 KB
testcase_11 AC 218 ms
53,644 KB
testcase_12 AC 229 ms
54,044 KB
testcase_13 AC 207 ms
53,588 KB
testcase_14 AC 230 ms
54,360 KB
testcase_15 AC 231 ms
54,752 KB
testcase_16 AC 230 ms
54,628 KB
testcase_17 AC 231 ms
54,952 KB
testcase_18 AC 231 ms
54,888 KB
testcase_19 AC 227 ms
54,156 KB
testcase_20 AC 232 ms
54,240 KB
testcase_21 AC 232 ms
54,148 KB
testcase_22 AC 230 ms
54,684 KB
testcase_23 AC 232 ms
54,328 KB
testcase_24 AC 223 ms
54,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        String s[]=bu.readLine().split(" ");
        int i,a[]=new int[n];
        for(i=0;i<n;i++) a[i]=Integer.parseInt(s[i]);

        int dp[]=new int[n]; long ans=0;
        for(i=n-2;i>=0;i--)
        {
            if(a[i]!=a[i+1]) dp[i]=dp[i+1]+1;
            else dp[i]=1;
            if(a[i]==1) ans+=dp[i];
        }
        System.out.println(ans);
    }
}
0