結果
問題 | No.1035 Color Box |
ユーザー | ks2m |
提出日時 | 2020-04-24 22:01:44 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 852 bytes |
コンパイル時間 | 2,253 ms |
コンパイル使用メモリ | 77,248 KB |
実行使用メモリ | 54,352 KB |
最終ジャッジ日時 | 2024-10-15 02:51:23 |
合計ジャッジ時間 | 7,732 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
53,844 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 124 ms
53,972 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 127 ms
53,700 KB |
testcase_20 | AC | 123 ms
53,896 KB |
testcase_21 | AC | 127 ms
54,168 KB |
testcase_22 | AC | 123 ms
53,528 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 124 ms
53,576 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 121 ms
53,712 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); sc.close(); int mod = 1000000007; long val1 = nCr(n, n - m, mod); long val2 = 1; for (int i = 1; i <= m; i++) { val2 = val2 * i % mod; } System.out.println(val1 * val2 % mod); } static long nCr(int n, int r, int m) { long val = 1; for (int i = 1; i <= r; i++) { val = val * (n - i + 1) % m; val = val * modinv(i, m) % m; } return val; } static long modinv(long a, int m) { long b = m; long u = 1; long v = 0; long tmp = 0; while (b > 0) { long t = a / b; a -= t * b; tmp = a; a = b; b = tmp; u -= t * v; tmp = u; u = v; v = tmp; } u %= m; if (u < 0) u += m; return u; } }