結果

問題 No.111 あばばばば
ユーザー abcabc
提出日時 2016-11-04 14:16:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 257 bytes
コンパイル時間 1,795 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-05-03 22:06:55
合計ジャッジ時間 3,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,384 KB
testcase_01 AC 105 ms
52,960 KB
testcase_02 AC 111 ms
53,132 KB
testcase_03 AC 115 ms
54,008 KB
testcase_04 AC 103 ms
53,060 KB
testcase_05 AC 115 ms
54,240 KB
testcase_06 AC 105 ms
52,952 KB
testcase_07 AC 115 ms
54,000 KB
testcase_08 AC 105 ms
52,696 KB
testcase_09 AC 119 ms
54,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        long stringLen = sc.nextInt();

        System.out.println((stringLen - 1) * (stringLen - 1) / 4);

    }

}
0