結果

問題 No.71 そろばん
ユーザー spaciaspacia
提出日時 2016-01-20 00:45:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 1,871 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 37,088 KB
最終ジャッジ日時 2024-09-21 14:41:42
合計ジャッジ時間 3,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,824 KB
testcase_01 AC 46 ms
37,088 KB
testcase_02 AC 47 ms
36,520 KB
testcase_03 AC 47 ms
36,672 KB
testcase_04 AC 46 ms
36,728 KB
testcase_05 AC 47 ms
36,916 KB
testcase_06 AC 46 ms
36,572 KB
testcase_07 AC 46 ms
36,544 KB
testcase_08 AC 46 ms
37,048 KB
testcase_09 AC 45 ms
36,888 KB
testcase_10 AC 45 ms
36,784 KB
testcase_11 AC 45 ms
36,552 KB
testcase_12 AC 45 ms
36,884 KB
testcase_13 AC 46 ms
36,516 KB
testcase_14 AC 48 ms
36,964 KB
testcase_15 AC 46 ms
36,848 KB
testcase_16 AC 47 ms
36,960 KB
testcase_17 AC 45 ms
36,520 KB
testcase_18 AC 45 ms
36,680 KB
testcase_19 AC 44 ms
36,664 KB
testcase_20 AC 45 ms
36,992 KB
testcase_21 AC 45 ms
36,936 KB
testcase_22 AC 48 ms
36,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		long n = Long.parseLong(br.readLine());
		
		if (n % 2 == 0)
			out((long)Math.pow(n / 2 + 1 , 2) - 1);
		else
			out(((n + 1) / 2 + 1) * ((n - 1) / 2 + 1) - 1);
	}
	
}
0