結果

問題 No.71 そろばん
ユーザー kou6839kou6839
提出日時 2014-11-21 22:11:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 294 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,316 KB
最終ジャッジ日時 2024-06-10 21:32:25
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,896 KB
testcase_01 AC 108 ms
41,016 KB
testcase_02 AC 105 ms
40,224 KB
testcase_03 AC 112 ms
41,036 KB
testcase_04 AC 105 ms
40,388 KB
testcase_05 AC 118 ms
40,276 KB
testcase_06 AC 107 ms
40,460 KB
testcase_07 AC 119 ms
41,164 KB
testcase_08 AC 114 ms
41,236 KB
testcase_09 AC 114 ms
41,156 KB
testcase_10 AC 116 ms
41,316 KB
testcase_11 AC 105 ms
40,240 KB
testcase_12 AC 116 ms
40,988 KB
testcase_13 AC 117 ms
41,160 KB
testcase_14 AC 112 ms
41,300 KB
testcase_15 AC 116 ms
41,140 KB
testcase_16 AC 111 ms
41,080 KB
testcase_17 AC 105 ms
40,400 KB
testcase_18 AC 108 ms
40,420 KB
testcase_19 AC 122 ms
41,080 KB
testcase_20 AC 111 ms
40,540 KB
testcase_21 AC 111 ms
40,432 KB
testcase_22 AC 107 ms
40,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long ans=0;
		for(int i=1;i<n;i++){
			long sita=n-i;
			ans=Math.max(ans,(sita+1)*i+sita);
		}
		System.out.println(ans);
	}
}	
0