結果

問題 No.71 そろばん
ユーザー (,,゚Д゚)TERIA な の で す(,,゚Д゚)TERIA な の で す
提出日時 2014-11-26 15:53:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 270 bytes
コンパイル時間 4,102 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-06-11 04:02:00
合計ジャッジ時間 6,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,112 KB
testcase_01 AC 102 ms
40,072 KB
testcase_02 AC 108 ms
41,124 KB
testcase_03 AC 112 ms
41,700 KB
testcase_04 AC 112 ms
41,308 KB
testcase_05 AC 106 ms
40,264 KB
testcase_06 AC 119 ms
41,380 KB
testcase_07 AC 110 ms
41,228 KB
testcase_08 AC 106 ms
41,216 KB
testcase_09 AC 110 ms
41,196 KB
testcase_10 AC 112 ms
41,184 KB
testcase_11 AC 103 ms
40,280 KB
testcase_12 AC 109 ms
41,260 KB
testcase_13 AC 106 ms
41,104 KB
testcase_14 AC 96 ms
40,368 KB
testcase_15 AC 118 ms
41,140 KB
testcase_16 AC 108 ms
41,552 KB
testcase_17 AC 107 ms
41,064 KB
testcase_18 AC 104 ms
41,148 KB
testcase_19 AC 104 ms
41,284 KB
testcase_20 AC 106 ms
41,072 KB
testcase_21 AC 114 ms
41,544 KB
testcase_22 AC 117 ms
41,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Soroban{
	public static void main(String args[])
	{
		Scanner s=new Scanner(System.in);
		long maxTama = s.nextLong();
		long maxTamaPosi = maxTama/2;
		System.out.println(maxTamaPosi+(maxTama-maxTamaPosi)*(maxTamaPosi+1));
	}
}
0