結果

問題 No.71 そろばん
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-20 13:03:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 391 bytes
コンパイル時間 1,910 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-07-04 17:56:15
合計ジャッジ時間 5,536 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,608 KB
testcase_01 AC 115 ms
41,380 KB
testcase_02 AC 124 ms
41,400 KB
testcase_03 AC 122 ms
41,452 KB
testcase_04 AC 122 ms
41,208 KB
testcase_05 AC 110 ms
40,296 KB
testcase_06 WA -
testcase_07 AC 110 ms
41,332 KB
testcase_08 WA -
testcase_09 AC 107 ms
41,388 KB
testcase_10 AC 108 ms
40,020 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 120 ms
41,448 KB
testcase_17 WA -
testcase_18 AC 122 ms
41,180 KB
testcase_19 AC 122 ms
41,332 KB
testcase_20 AC 122 ms
41,236 KB
testcase_21 AC 124 ms
41,400 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        if(n%2==0){
            int a = n/2;
            System.out.println((long)n*n/4+n);
        }else{
            int a = (n+1)/2;
            System.out.println((long)-a*a+n*a+n);
        }
    }
    
}
0