結果

問題 No.71 そろばん
ユーザー rn4rurn4ru
提出日時 2016-04-14 09:30:59
言語 Java
(openjdk 23)
結果
AC  
実行時間 713 ms / 5,000 ms
コード長 568 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 75,548 KB
実行使用メモリ 66,460 KB
最終ジャッジ日時 2024-10-04 08:31:07
合計ジャッジ時間 14,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,940 KB
testcase_01 AC 111 ms
54,036 KB
testcase_02 AC 713 ms
64,912 KB
testcase_03 AC 435 ms
61,116 KB
testcase_04 AC 505 ms
64,900 KB
testcase_05 AC 636 ms
64,544 KB
testcase_06 AC 686 ms
64,772 KB
testcase_07 AC 542 ms
65,672 KB
testcase_08 AC 472 ms
61,100 KB
testcase_09 AC 678 ms
64,720 KB
testcase_10 AC 502 ms
64,700 KB
testcase_11 AC 265 ms
58,388 KB
testcase_12 AC 370 ms
60,488 KB
testcase_13 AC 685 ms
66,460 KB
testcase_14 AC 433 ms
61,204 KB
testcase_15 AC 599 ms
64,576 KB
testcase_16 AC 262 ms
58,312 KB
testcase_17 AC 449 ms
64,068 KB
testcase_18 AC 629 ms
64,572 KB
testcase_19 AC 693 ms
64,632 KB
testcase_20 AC 690 ms
64,536 KB
testcase_21 AC 444 ms
61,304 KB
testcase_22 AC 565 ms
65,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int N = scanner.nextInt();

		BigInteger max = BigInteger.ZERO;
		for (int i = 0; i < N; i++) {
			BigInteger upper = new BigInteger(String.valueOf(i));
			BigInteger lower = new BigInteger(String.valueOf(N - i));
			if (max.compareTo(upper.multiply(lower.add(BigInteger.ONE)).add(lower)) < 1) {
				max = upper.multiply(lower.add(BigInteger.ONE)).add(lower);
			}
		}

		System.out.println(max);
	}

}
0