結果

問題 No.71 そろばん
ユーザー Mcpu3Mcpu3
提出日時 2018-09-07 16:39:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 210 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-05-05 19:51:21
合計ジャッジ時間 5,519 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,016 KB
testcase_01 AC 101 ms
39,796 KB
testcase_02 AC 114 ms
40,904 KB
testcase_03 AC 105 ms
41,012 KB
testcase_04 AC 96 ms
39,912 KB
testcase_05 AC 106 ms
40,188 KB
testcase_06 AC 109 ms
41,160 KB
testcase_07 AC 101 ms
40,408 KB
testcase_08 AC 106 ms
41,176 KB
testcase_09 AC 107 ms
41,172 KB
testcase_10 AC 114 ms
40,820 KB
testcase_11 AC 107 ms
40,924 KB
testcase_12 AC 108 ms
41,084 KB
testcase_13 AC 104 ms
41,104 KB
testcase_14 AC 104 ms
40,852 KB
testcase_15 AC 106 ms
41,144 KB
testcase_16 AC 99 ms
40,480 KB
testcase_17 AC 110 ms
41,320 KB
testcase_18 AC 111 ms
41,252 KB
testcase_19 AC 107 ms
41,076 KB
testcase_20 AC 108 ms
40,936 KB
testcase_21 AC 111 ms
41,120 KB
testcase_22 AC 109 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong();
		sc.close();
		System.out.print((n+1)/2*(n/2+1)+n/2);
	}
}
0