結果

問題 No.1089 三変数方程式
ユーザー tentententen
提出日時 2024-07-10 18:09:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 1,294 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 78,160 KB
実行使用メモリ 37,680 KB
最終ジャッジ日時 2024-07-10 18:09:23
合計ジャッジ時間 4,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,948 KB
testcase_01 AC 51 ms
37,012 KB
testcase_02 AC 53 ms
36,496 KB
testcase_03 AC 64 ms
37,264 KB
testcase_04 AC 52 ms
36,968 KB
testcase_05 AC 63 ms
37,352 KB
testcase_06 AC 62 ms
37,020 KB
testcase_07 AC 54 ms
36,756 KB
testcase_08 AC 70 ms
37,408 KB
testcase_09 AC 52 ms
36,592 KB
testcase_10 AC 65 ms
37,524 KB
testcase_11 AC 61 ms
36,968 KB
testcase_12 AC 63 ms
37,560 KB
testcase_13 AC 65 ms
37,104 KB
testcase_14 AC 65 ms
37,680 KB
testcase_15 AC 65 ms
37,484 KB
testcase_16 AC 64 ms
37,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int ans = 0;
        for (int i = 0; i <= n; i++) {
            for (int j = 0; j + i <= n; j++) {
                ans++;
            }
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0