結果

問題 No.1822 Keima of Shogi
ユーザー koanviolinkoanviolin
提出日時 2022-01-28 21:37:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-12-30 05:28:50
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,060 KB
testcase_01 AC 128 ms
40,608 KB
testcase_02 AC 135 ms
41,320 KB
testcase_03 AC 135 ms
41,460 KB
testcase_04 AC 135 ms
41,400 KB
testcase_05 AC 137 ms
41,192 KB
testcase_06 AC 137 ms
41,396 KB
testcase_07 AC 127 ms
40,260 KB
testcase_08 AC 137 ms
41,304 KB
testcase_09 AC 133 ms
41,104 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