結果

問題 No.2053 12345...
ユーザー viral8viral8
提出日時 2022-10-01 10:57:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 731 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 2,747 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 57,548 KB
最終ジャッジ日時 2024-06-06 04:14:31
合計ジャッジ時間 18,746 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,212 KB
testcase_01 AC 108 ms
41,100 KB
testcase_02 AC 186 ms
44,116 KB
testcase_03 AC 389 ms
47,748 KB
testcase_04 AC 605 ms
51,848 KB
testcase_05 AC 335 ms
47,664 KB
testcase_06 AC 538 ms
51,412 KB
testcase_07 AC 423 ms
47,708 KB
testcase_08 AC 436 ms
46,484 KB
testcase_09 AC 527 ms
51,608 KB
testcase_10 AC 705 ms
56,356 KB
testcase_11 AC 342 ms
47,788 KB
testcase_12 AC 269 ms
47,552 KB
testcase_13 AC 665 ms
52,596 KB
testcase_14 AC 483 ms
48,044 KB
testcase_15 AC 454 ms
48,144 KB
testcase_16 AC 427 ms
47,792 KB
testcase_17 AC 358 ms
47,960 KB
testcase_18 AC 731 ms
54,204 KB
testcase_19 AC 617 ms
51,232 KB
testcase_20 AC 259 ms
46,912 KB
testcase_21 AC 524 ms
47,796 KB
testcase_22 AC 165 ms
42,888 KB
testcase_23 AC 298 ms
47,640 KB
testcase_24 AC 407 ms
47,912 KB
testcase_25 AC 729 ms
53,516 KB
testcase_26 AC 420 ms
47,932 KB
testcase_27 AC 375 ms
47,848 KB
testcase_28 AC 333 ms
47,828 KB
testcase_29 AC 499 ms
50,140 KB
testcase_30 AC 374 ms
47,724 KB
testcase_31 AC 520 ms
49,868 KB
testcase_32 AC 666 ms
57,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int now = sc.nextInt();
        long count = 1;
        long ans = 0;
        while(--N>0){
            int next = sc.nextInt();
            if(++now==next)
                ++count;
            else{
                now = next;
                ans += count*(count-1)/2;
                count = 1;
            }
        }
        System.out.println(ans+count*(count-1)/2);
    }
}
0