結果

問題 No.71 そろばん
ユーザー k_kadorak_kadora
提出日時 2015-06-19 22:14:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 327 bytes
コンパイル時間 5,013 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-07-07 04:00:46
合計ジャッジ時間 8,003 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,972 KB
testcase_01 AC 113 ms
54,088 KB
testcase_02 AC 106 ms
53,636 KB
testcase_03 AC 106 ms
53,724 KB
testcase_04 AC 97 ms
53,104 KB
testcase_05 AC 109 ms
53,696 KB
testcase_06 AC 117 ms
53,832 KB
testcase_07 AC 105 ms
53,788 KB
testcase_08 AC 98 ms
52,576 KB
testcase_09 AC 107 ms
53,972 KB
testcase_10 AC 110 ms
54,204 KB
testcase_11 AC 106 ms
53,732 KB
testcase_12 AC 98 ms
52,696 KB
testcase_13 AC 97 ms
52,812 KB
testcase_14 AC 108 ms
53,700 KB
testcase_15 AC 104 ms
53,696 KB
testcase_16 AC 106 ms
53,976 KB
testcase_17 AC 97 ms
52,980 KB
testcase_18 AC 93 ms
52,724 KB
testcase_19 AC 95 ms
54,140 KB
testcase_20 AC 97 ms
52,928 KB
testcase_21 AC 107 ms
53,964 KB
testcase_22 AC 111 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki71{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n;
		long res;
		n = sc.nextInt();
		if(n % 2 == 0){
			res = (long)(n/2)*(long)(n/2+1)+(long)(n/2);
		}else{
			res = (long)(n/2+1)*(long)(n/2+1)+(long)(n/2);
		}
		System.out.println(res);
	}
}
0