結果

問題 No.111 あばばばば
ユーザー shinwisteriashinwisteria
提出日時 2019-01-23 21:27:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 211 bytes
コンパイル時間 3,018 ms
コンパイル使用メモリ 71,604 KB
実行使用メモリ 56,368 KB
最終ジャッジ日時 2023-10-14 09:31:43
合計ジャッジ時間 5,004 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
56,212 KB
testcase_01 AC 123 ms
56,052 KB
testcase_02 AC 123 ms
55,624 KB
testcase_03 AC 123 ms
56,016 KB
testcase_04 AC 125 ms
55,772 KB
testcase_05 AC 125 ms
55,708 KB
testcase_06 AC 123 ms
55,592 KB
testcase_07 AC 122 ms
56,368 KB
testcase_08 AC 123 ms
55,936 KB
testcase_09 AC 121 ms
55,648 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((l/2) * (l/2));

	}

}
0