結果

問題 No.523 LED
ユーザー htensaihtensai
提出日時 2020-01-29 09:46:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 37,724 KB
最終ジャッジ日時 2024-09-15 20:12:31
合計ジャッジ時間 5,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,932 KB
testcase_01 AC 51 ms
36,892 KB
testcase_02 AC 63 ms
37,044 KB
testcase_03 AC 52 ms
36,760 KB
testcase_04 AC 50 ms
36,932 KB
testcase_05 AC 172 ms
37,272 KB
testcase_06 AC 51 ms
36,816 KB
testcase_07 AC 52 ms
36,720 KB
testcase_08 AC 51 ms
36,480 KB
testcase_09 AC 57 ms
36,876 KB
testcase_10 AC 51 ms
36,692 KB
testcase_11 AC 51 ms
36,788 KB
testcase_12 AC 51 ms
36,932 KB
testcase_13 AC 86 ms
37,724 KB
testcase_14 AC 51 ms
36,856 KB
testcase_15 AC 51 ms
36,464 KB
testcase_16 AC 51 ms
36,936 KB
testcase_17 AC 52 ms
36,796 KB
testcase_18 AC 168 ms
37,560 KB
testcase_19 AC 103 ms
37,700 KB
testcase_20 AC 96 ms
37,400 KB
testcase_21 AC 146 ms
37,668 KB
testcase_22 AC 155 ms
37,624 KB
testcase_23 AC 152 ms
37,620 KB
testcase_24 AC 65 ms
37,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        long ans = 1;
        for (int i = 1; i <= 2 * n; i++) {
            if (i % 2 == 0) {
                ans *= i / 2;
            } else {
                ans *= i;
            }
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
0