結果

問題 No.2053 12345...
ユーザー ks2mks2m
提出日時 2022-08-21 12:54:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 71,456 KB
最終ジャッジ日時 2024-10-10 05:54:58
合計ジャッジ時間 10,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,252 KB
testcase_01 AC 57 ms
50,084 KB
testcase_02 AC 78 ms
51,236 KB
testcase_03 AC 163 ms
57,008 KB
testcase_04 AC 284 ms
63,096 KB
testcase_05 AC 150 ms
53,732 KB
testcase_06 AC 271 ms
62,852 KB
testcase_07 AC 230 ms
60,592 KB
testcase_08 AC 229 ms
60,420 KB
testcase_09 AC 258 ms
63,232 KB
testcase_10 AC 323 ms
68,136 KB
testcase_11 AC 147 ms
54,152 KB
testcase_12 AC 121 ms
51,912 KB
testcase_13 AC 307 ms
66,444 KB
testcase_14 AC 205 ms
55,892 KB
testcase_15 AC 196 ms
57,840 KB
testcase_16 AC 185 ms
57,884 KB
testcase_17 AC 149 ms
54,800 KB
testcase_18 AC 314 ms
68,032 KB
testcase_19 AC 335 ms
64,712 KB
testcase_20 AC 123 ms
51,956 KB
testcase_21 AC 229 ms
60,444 KB
testcase_22 AC 69 ms
50,536 KB
testcase_23 AC 139 ms
54,056 KB
testcase_24 AC 183 ms
57,264 KB
testcase_25 AC 307 ms
71,456 KB
testcase_26 AC 230 ms
60,544 KB
testcase_27 AC 175 ms
56,876 KB
testcase_28 AC 164 ms
58,116 KB
testcase_29 AC 270 ms
63,104 KB
testcase_30 AC 164 ms
56,920 KB
testcase_31 AC 250 ms
63,520 KB
testcase_32 AC 317 ms
68,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

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

		long ans = 0;
		int r = 1;
		for (int l = 0; l < n; l++) {
			r = Math.max(r, l + 1);
			while (r < n) {
				if (a[r - 1] + 1 == a[r]) {
					r++;
				} else {
					break;
				}
			}
			ans += r - l - 1;
		}
		System.out.println(ans);
	}
}
0