結果

問題 No.2053 12345...
ユーザー viral8viral8
提出日時 2022-10-01 10:56:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 542 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 77,168 KB
実行使用メモリ 57,412 KB
最終ジャッジ日時 2024-06-06 04:12:06
合計ジャッジ時間 21,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,264 KB
testcase_01 AC 135 ms
41,104 KB
testcase_02 AC 216 ms
43,848 KB
testcase_03 AC 457 ms
47,688 KB
testcase_04 AC 695 ms
51,772 KB
testcase_05 AC 389 ms
47,556 KB
testcase_06 WA -
testcase_07 AC 565 ms
48,028 KB
testcase_08 AC 545 ms
47,900 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 385 ms
47,728 KB
testcase_12 AC 320 ms
47,332 KB
testcase_13 AC 825 ms
52,296 KB
testcase_14 AC 535 ms
48,060 KB
testcase_15 AC 550 ms
48,060 KB
testcase_16 AC 512 ms
47,976 KB
testcase_17 AC 447 ms
48,260 KB
testcase_18 AC 845 ms
54,336 KB
testcase_19 AC 717 ms
51,588 KB
testcase_20 AC 305 ms
47,360 KB
testcase_21 AC 648 ms
48,136 KB
testcase_22 AC 203 ms
42,500 KB
testcase_23 AC 356 ms
47,520 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 437 ms
47,476 KB
testcase_29 WA -
testcase_30 AC 459 ms
47,700 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
        int count = 1;
        int 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