結果

問題 No.831 都市めぐり
ユーザー ks2mks2m
提出日時 2019-05-24 22:08:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 432 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 77,680 KB
実行使用メモリ 113,224 KB
最終ジャッジ日時 2024-09-17 10:45:30
合計ジャッジ時間 7,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,512 KB
testcase_01 AC 132 ms
41,388 KB
testcase_02 AC 130 ms
40,924 KB
testcase_03 AC 130 ms
41,360 KB
testcase_04 AC 130 ms
41,260 KB
testcase_05 AC 131 ms
41,076 KB
testcase_06 AC 123 ms
40,500 KB
testcase_07 AC 134 ms
41,476 KB
testcase_08 AC 139 ms
41,780 KB
testcase_09 AC 133 ms
41,544 KB
testcase_10 AC 137 ms
41,580 KB
testcase_11 AC 135 ms
41,612 KB
testcase_12 AC 172 ms
46,796 KB
testcase_13 AC 155 ms
46,548 KB
testcase_14 AC 171 ms
46,892 KB
testcase_15 AC 294 ms
73,548 KB
testcase_16 AC 216 ms
57,328 KB
testcase_17 AC 303 ms
75,944 KB
testcase_18 AC 323 ms
90,808 KB
testcase_19 AC 430 ms
111,128 KB
testcase_20 AC 432 ms
113,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		if (n == 1) {
			System.out.println(0);
			return;
		}

		ArrayDeque<Long> que = new ArrayDeque<Long>();
		que.add(1L);
		long left = 2;
		long right = n;
		while (left <= right) {
			que.addFirst(right);
			right--;
			if (left <= right) {
				que.addLast(right);
				right--;
			}
			if (left <= right) {
				que.addFirst(left);
				left++;
			}
			if (left <= right) {
				que.addLast(left);
				left++;
			}
		}

		long ans = 0;
		long first = que.pollFirst();
		long i = 0;
		long j = first;
		while (!que.isEmpty()) {
			i = j;
			j = que.pollFirst();
			ans += i * j + j - i;
		}
		ans += j * first + first - j;
		System.out.println(ans);
	}
}
0