結果

問題 No.111 あばばばば
ユーザー fukuseifukusei
提出日時 2017-05-17 15:25:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 226 bytes
コンパイル時間 3,326 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-09-17 20:58:46
合計ジャッジ時間 5,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,520 KB
testcase_01 AC 129 ms
41,172 KB
testcase_02 AC 132 ms
41,456 KB
testcase_03 AC 130 ms
40,928 KB
testcase_04 AC 128 ms
41,200 KB
testcase_05 AC 135 ms
41,308 KB
testcase_06 AC 129 ms
41,376 KB
testcase_07 AC 129 ms
41,344 KB
testcase_08 AC 129 ms
41,564 KB
testcase_09 AC 129 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*; 

public class test {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();

		
		long b = (a-1) / 2;
		long ans = b * b;
		
		System.out.println(ans);
	}
}
0