結果

問題 No.71 そろばん
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-03 21:32:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 328 bytes
コンパイル時間 1,836 ms
コンパイル使用メモリ 73,472 KB
実行使用メモリ 41,276 KB
最終ジャッジ日時 2024-11-27 14:36:04
合計ジャッジ時間 5,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,008 KB
testcase_01 AC 105 ms
40,064 KB
testcase_02 AC 118 ms
41,036 KB
testcase_03 AC 121 ms
41,272 KB
testcase_04 AC 120 ms
40,864 KB
testcase_05 AC 129 ms
40,932 KB
testcase_06 AC 125 ms
40,980 KB
testcase_07 AC 108 ms
40,132 KB
testcase_08 AC 119 ms
41,228 KB
testcase_09 AC 114 ms
40,192 KB
testcase_10 AC 121 ms
40,700 KB
testcase_11 AC 122 ms
41,044 KB
testcase_12 AC 129 ms
40,964 KB
testcase_13 AC 125 ms
41,276 KB
testcase_14 AC 112 ms
40,404 KB
testcase_15 AC 122 ms
41,180 KB
testcase_16 AC 104 ms
40,000 KB
testcase_17 AC 108 ms
40,268 KB
testcase_18 AC 126 ms
41,048 KB
testcase_19 AC 110 ms
39,980 KB
testcase_20 AC 123 ms
41,064 KB
testcase_21 AC 120 ms
41,124 KB
testcase_22 AC 114 ms
40,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        long max=0;
        for(long i=0; i<=N; i++){
            long t=N*i-i*i+N;
            max=Math.max(max,t);
        }
        System.out.println(max);
    }
}
0