結果

問題 No.71 そろばん
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-18 17:01:26
言語 Java
(openjdk 23)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 3,395 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-12-24 14:54:50
合計ジャッジ時間 8,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,340 KB
testcase_01 AC 150 ms
41,040 KB
testcase_02 AC 163 ms
41,216 KB
testcase_03 AC 159 ms
41,152 KB
testcase_04 AC 159 ms
41,316 KB
testcase_05 AC 160 ms
41,128 KB
testcase_06 AC 163 ms
41,300 KB
testcase_07 AC 146 ms
39,964 KB
testcase_08 AC 158 ms
41,500 KB
testcase_09 AC 159 ms
41,024 KB
testcase_10 AC 159 ms
41,408 KB
testcase_11 AC 155 ms
41,420 KB
testcase_12 AC 161 ms
41,200 KB
testcase_13 AC 162 ms
40,952 KB
testcase_14 AC 163 ms
41,136 KB
testcase_15 AC 161 ms
41,392 KB
testcase_16 AC 161 ms
41,180 KB
testcase_17 AC 161 ms
41,392 KB
testcase_18 AC 161 ms
40,976 KB
testcase_19 AC 165 ms
41,176 KB
testcase_20 AC 161 ms
41,472 KB
testcase_21 AC 158 ms
41,276 KB
testcase_22 AC 165 ms
41,244 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