結果

問題 No.71 そろばん
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-20 13:08:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 407 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-07-04 17:56:09
合計ジャッジ時間 5,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,136 KB
testcase_01 AC 127 ms
40,924 KB
testcase_02 AC 129 ms
41,080 KB
testcase_03 AC 130 ms
41,340 KB
testcase_04 AC 115 ms
41,264 KB
testcase_05 AC 130 ms
41,080 KB
testcase_06 AC 129 ms
41,084 KB
testcase_07 AC 131 ms
41,184 KB
testcase_08 AC 126 ms
41,712 KB
testcase_09 AC 115 ms
41,312 KB
testcase_10 AC 122 ms
40,048 KB
testcase_11 AC 116 ms
41,224 KB
testcase_12 AC 133 ms
41,160 KB
testcase_13 AC 131 ms
41,176 KB
testcase_14 AC 129 ms
41,120 KB
testcase_15 AC 128 ms
41,180 KB
testcase_16 AC 127 ms
41,124 KB
testcase_17 AC 129 ms
41,184 KB
testcase_18 AC 131 ms
41,696 KB
testcase_19 AC 128 ms
41,312 KB
testcase_20 AC 147 ms
41,168 KB
testcase_21 AC 155 ms
41,048 KB
testcase_22 AC 130 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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