結果

問題 No.71 そろばん
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-18 17:01:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-06-06 20:49:50
合計ジャッジ時間 5,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,564 KB
testcase_01 AC 101 ms
39,892 KB
testcase_02 AC 122 ms
41,168 KB
testcase_03 AC 131 ms
41,040 KB
testcase_04 AC 119 ms
40,292 KB
testcase_05 AC 109 ms
40,816 KB
testcase_06 AC 109 ms
41,060 KB
testcase_07 AC 127 ms
41,004 KB
testcase_08 AC 110 ms
40,788 KB
testcase_09 AC 118 ms
40,780 KB
testcase_10 AC 119 ms
40,164 KB
testcase_11 AC 118 ms
39,768 KB
testcase_12 AC 118 ms
41,328 KB
testcase_13 AC 116 ms
41,468 KB
testcase_14 AC 121 ms
41,428 KB
testcase_15 AC 118 ms
40,052 KB
testcase_16 AC 126 ms
40,764 KB
testcase_17 AC 131 ms
41,172 KB
testcase_18 AC 116 ms
41,256 KB
testcase_19 AC 118 ms
41,004 KB
testcase_20 AC 103 ms
40,028 KB
testcase_21 AC 111 ms
41,084 KB
testcase_22 AC 109 ms
41,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		long max=Integer.MIN_VALUE;
		for(int i=0;i<=n;i++) {
			int j=n-i;
			int ut=i+1;
			long tmp=i+(long)j*ut;
			max=Math.max(max, tmp);
		}
		System.out.println(max);
	}
}
0