結果

問題 No.71 そろばん
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-19 18:53:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 818 bytes
コンパイル時間 3,271 ms
コンパイル使用メモリ 75,616 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-07-04 18:00:46
合計ジャッジ時間 7,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,896 KB
testcase_01 AC 111 ms
40,184 KB
testcase_02 AC 118 ms
40,236 KB
testcase_03 AC 130 ms
41,324 KB
testcase_04 AC 128 ms
41,272 KB
testcase_05 AC 130 ms
41,264 KB
testcase_06 AC 143 ms
41,328 KB
testcase_07 AC 138 ms
41,292 KB
testcase_08 AC 141 ms
41,312 KB
testcase_09 AC 139 ms
41,068 KB
testcase_10 AC 116 ms
40,268 KB
testcase_11 AC 132 ms
41,536 KB
testcase_12 AC 131 ms
41,164 KB
testcase_13 AC 132 ms
41,340 KB
testcase_14 AC 127 ms
41,400 KB
testcase_15 AC 117 ms
40,200 KB
testcase_16 AC 130 ms
41,268 KB
testcase_17 AC 136 ms
41,268 KB
testcase_18 AC 130 ms
41,392 KB
testcase_19 AC 132 ms
41,268 KB
testcase_20 AC 138 ms
41,308 KB
testcase_21 AC 133 ms
41,040 KB
testcase_22 AC 132 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.71 そろばん

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No0071 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = in.nextInt();
        long max = 0;
        for (long i=0; i<=n; i++) {
            max = max(max,i+(i+1)*(n-i));
        }
        out.println(max);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0