結果

問題 No.1822 Keima of Shogi
ユーザー koanviolinkoanviolin
提出日時 2022-01-28 21:37:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 1,780 ms
コンパイル使用メモリ 76,156 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-06-09 14:31:40
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,048 KB
testcase_01 AC 100 ms
52,724 KB
testcase_02 AC 109 ms
53,992 KB
testcase_03 AC 101 ms
52,668 KB
testcase_04 AC 114 ms
54,008 KB
testcase_05 AC 99 ms
52,652 KB
testcase_06 AC 100 ms
52,752 KB
testcase_07 AC 99 ms
52,964 KB
testcase_08 AC 110 ms
54,000 KB
testcase_09 AC 102 ms
54,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
   
    public static void main(String[] argv){
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        long k = n / 2 +1;
        System.out.println(k*(k+1)/2);


    }
}
0