結果

問題 No.71 そろばん
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-17 22:23:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 337 bytes
コンパイル時間 2,774 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 41,884 KB
最終ジャッジ日時 2024-06-24 12:22:10
合計ジャッジ時間 7,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,708 KB
testcase_01 AC 149 ms
41,364 KB
testcase_02 AC 153 ms
41,356 KB
testcase_03 AC 150 ms
41,636 KB
testcase_04 AC 151 ms
41,168 KB
testcase_05 AC 150 ms
41,572 KB
testcase_06 AC 151 ms
41,584 KB
testcase_07 AC 148 ms
41,468 KB
testcase_08 AC 151 ms
41,884 KB
testcase_09 AC 147 ms
41,696 KB
testcase_10 AC 148 ms
41,604 KB
testcase_11 AC 149 ms
41,384 KB
testcase_12 AC 155 ms
41,344 KB
testcase_13 AC 155 ms
41,704 KB
testcase_14 AC 152 ms
41,476 KB
testcase_15 AC 153 ms
41,488 KB
testcase_16 AC 150 ms
41,144 KB
testcase_17 AC 151 ms
41,548 KB
testcase_18 AC 155 ms
41,156 KB
testcase_19 AC 154 ms
41,216 KB
testcase_20 AC 156 ms
41,156 KB
testcase_21 AC 156 ms
41,372 KB
testcase_22 AC 148 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		long max = -1;
		for (int i=0; i<=n; i++) {
			long top = i;
			long bottom = n-i;
			long num = bottom*(top+1)+top;
			if (max < num) {max =num ;}
		}
		System.out.println(max);
	}
}
0