結果

問題 No.111 あばばばば
ユーザー ffmm00ffmm00
提出日時 2015-06-18 12:39:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 215 bytes
コンパイル時間 4,862 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-07-07 03:37:37
合計ジャッジ時間 5,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,852 KB
testcase_01 AC 122 ms
54,020 KB
testcase_02 AC 122 ms
53,960 KB
testcase_03 AC 122 ms
54,156 KB
testcase_04 AC 126 ms
54,208 KB
testcase_05 AC 126 ms
54,032 KB
testcase_06 AC 104 ms
52,772 KB
testcase_07 AC 122 ms
54,152 KB
testcase_08 AC 122 ms
54,080 KB
testcase_09 AC 124 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N111 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		long L = sca.nextLong();

		L = (L - 1) / 2;

		System.out.println(L * L);

	}

}
0