結果

問題 No.111 あばばばば
ユーザー shinwisteriashinwisteria
提出日時 2019-01-23 20:09:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 3,346 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-09-16 04:30:13
合計ジャッジ時間 5,413 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,252 KB
testcase_01 AC 125 ms
41,304 KB
testcase_02 AC 128 ms
41,340 KB
testcase_03 WA -
testcase_04 AC 127 ms
41,256 KB
testcase_05 AC 130 ms
41,144 KB
testcase_06 AC 128 ms
41,300 KB
testcase_07 AC 129 ms
41,320 KB
testcase_08 WA -
testcase_09 AC 126 ms
40,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No111 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		long l = s.nextLong();
		s.close();

		System.out.println((long)Math.pow(((double)l-1)/2, 2));

	}

}
0