結果

問題 No.71 そろばん
ユーザー kuramukuramu
提出日時 2016-02-07 00:47:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 657 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 37,468 KB
最終ジャッジ日時 2024-09-21 20:56:19
合計ジャッジ時間 4,223 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,360 KB
testcase_01 AC 53 ms
37,444 KB
testcase_02 AC 53 ms
36,960 KB
testcase_03 AC 53 ms
36,956 KB
testcase_04 AC 52 ms
36,824 KB
testcase_05 AC 53 ms
37,008 KB
testcase_06 AC 53 ms
37,280 KB
testcase_07 AC 53 ms
37,468 KB
testcase_08 AC 54 ms
37,212 KB
testcase_09 AC 53 ms
36,804 KB
testcase_10 AC 55 ms
37,348 KB
testcase_11 AC 54 ms
36,932 KB
testcase_12 AC 54 ms
37,116 KB
testcase_13 AC 53 ms
37,296 KB
testcase_14 AC 54 ms
37,008 KB
testcase_15 AC 52 ms
37,468 KB
testcase_16 AC 54 ms
36,696 KB
testcase_17 AC 54 ms
37,168 KB
testcase_18 AC 54 ms
37,160 KB
testcase_19 AC 55 ms
37,444 KB
testcase_20 AC 54 ms
37,296 KB
testcase_21 AC 54 ms
36,796 KB
testcase_22 AC 54 ms
37,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigInteger;
public class Main {

	 public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  BigInteger num = BigInteger.valueOf(Long.parseLong(stdReader.readLine()));
	    	  BigInteger up = num.divide(BigInteger.valueOf(2));
	    	  BigInteger down = num.subtract(up);
	    	  BigInteger ans = up.multiply(down.add(BigInteger.valueOf(1))).add(down);
	    	  System.out.println(ans);
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0