結果

問題 No.831 都市めぐり
ユーザー tentententen
提出日時 2020-09-01 01:56:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 2,778 ms
コンパイル使用メモリ 82,812 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-11-17 03:03:57
合計ジャッジ時間 5,526 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,020 KB
testcase_01 AC 126 ms
41,000 KB
testcase_02 AC 128 ms
41,228 KB
testcase_03 AC 112 ms
39,716 KB
testcase_04 AC 124 ms
41,312 KB
testcase_05 AC 111 ms
39,728 KB
testcase_06 AC 125 ms
41,168 KB
testcase_07 AC 119 ms
41,100 KB
testcase_08 AC 123 ms
41,068 KB
testcase_09 AC 126 ms
41,120 KB
testcase_10 AC 125 ms
41,352 KB
testcase_11 AC 125 ms
41,088 KB
testcase_12 AC 130 ms
41,192 KB
testcase_13 AC 125 ms
40,936 KB
testcase_14 AC 125 ms
41,124 KB
testcase_15 AC 118 ms
40,104 KB
testcase_16 AC 133 ms
40,792 KB
testcase_17 AC 132 ms
40,916 KB
testcase_18 AC 130 ms
41,424 KB
testcase_19 AC 132 ms
41,400 KB
testcase_20 AC 132 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	long n = sc.nextInt();
    	if (n == 1) {
    	    System.out.println(0);
    	    return;
    	}
    	long left = 1;
    	long right = n;
    	long total = n;
    	while (right - left > 1) {
    	    total += left * (right - 1);
    	    total += (left + 1) * right;
    	    right--;
    	    left++;
    	}
    	if (right - left == 1) {
    	    total += right * left;
    	}
    	System.out.println(total);
	}
}
0