結果

問題 No.71 そろばん
ユーザー リチウムリチウム
提出日時 2014-11-18 23:49:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 340 bytes
コンパイル時間 1,925 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 41,340 KB
最終ジャッジ日時 2024-06-10 21:06:48
合計ジャッジ時間 5,787 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,084 KB
testcase_01 AC 118 ms
39,964 KB
testcase_02 AC 135 ms
41,212 KB
testcase_03 AC 131 ms
40,932 KB
testcase_04 AC 120 ms
40,284 KB
testcase_05 AC 128 ms
41,124 KB
testcase_06 AC 131 ms
41,044 KB
testcase_07 AC 128 ms
41,264 KB
testcase_08 AC 129 ms
40,992 KB
testcase_09 AC 132 ms
41,264 KB
testcase_10 AC 133 ms
41,012 KB
testcase_11 AC 127 ms
41,168 KB
testcase_12 AC 131 ms
41,340 KB
testcase_13 AC 132 ms
40,916 KB
testcase_14 AC 129 ms
41,212 KB
testcase_15 AC 133 ms
41,280 KB
testcase_16 AC 130 ms
40,936 KB
testcase_17 AC 134 ms
41,332 KB
testcase_18 AC 138 ms
41,132 KB
testcase_19 AC 126 ms
40,188 KB
testcase_20 AC 140 ms
40,940 KB
testcase_21 AC 141 ms
41,336 KB
testcase_22 AC 139 ms
40,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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