結果

問題 No.71 そろばん
ユーザー tentententen
提出日時 2022-07-28 18:31:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 1,095 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 75,492 KB
実行使用メモリ 37,888 KB
最終ジャッジ日時 2024-07-18 09:08:43
合計ジャッジ時間 4,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,984 KB
testcase_01 AC 50 ms
36,728 KB
testcase_02 AC 65 ms
37,680 KB
testcase_03 AC 61 ms
37,156 KB
testcase_04 AC 64 ms
37,764 KB
testcase_05 AC 63 ms
37,736 KB
testcase_06 AC 61 ms
37,772 KB
testcase_07 AC 60 ms
37,608 KB
testcase_08 AC 72 ms
37,580 KB
testcase_09 AC 62 ms
37,776 KB
testcase_10 AC 60 ms
37,444 KB
testcase_11 AC 56 ms
36,852 KB
testcase_12 AC 60 ms
36,924 KB
testcase_13 AC 62 ms
37,684 KB
testcase_14 AC 71 ms
37,540 KB
testcase_15 AC 65 ms
37,708 KB
testcase_16 AC 58 ms
36,904 KB
testcase_17 AC 62 ms
37,528 KB
testcase_18 AC 63 ms
37,600 KB
testcase_19 AC 64 ms
37,888 KB
testcase_20 AC 63 ms
37,796 KB
testcase_21 AC 66 ms
37,608 KB
testcase_22 AC 61 ms
37,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static HashSet<String> ans = new HashSet<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextInt();
        long max = 0;
        for (int i = 0; i < n; i++) {
            max = Math.max(max, i * (n - i + 1) + n - i);
        }
        System.out.println(max);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0