結果
問題 | No.573 a^2[i] = a[i] |
ユーザー | tetsu |
提出日時 | 2017-10-16 01:59:55 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 257 ms / 2,000 ms |
コード長 | 2,536 bytes |
コンパイル時間 | 3,879 ms |
コンパイル使用メモリ | 78,388 KB |
実行使用メモリ | 42,932 KB |
最終ジャッジ日時 | 2024-11-17 18:58:22 |
合計ジャッジ時間 | 10,787 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
41,064 KB |
testcase_01 | AC | 112 ms
40,204 KB |
testcase_02 | AC | 123 ms
41,232 KB |
testcase_03 | AC | 120 ms
41,120 KB |
testcase_04 | AC | 118 ms
41,084 KB |
testcase_05 | AC | 123 ms
41,260 KB |
testcase_06 | AC | 123 ms
41,192 KB |
testcase_07 | AC | 121 ms
41,112 KB |
testcase_08 | AC | 127 ms
41,320 KB |
testcase_09 | AC | 118 ms
41,104 KB |
testcase_10 | AC | 123 ms
41,212 KB |
testcase_11 | AC | 120 ms
41,208 KB |
testcase_12 | AC | 123 ms
41,140 KB |
testcase_13 | AC | 122 ms
41,180 KB |
testcase_14 | AC | 119 ms
40,576 KB |
testcase_15 | AC | 127 ms
41,372 KB |
testcase_16 | AC | 111 ms
40,100 KB |
testcase_17 | AC | 120 ms
41,212 KB |
testcase_18 | AC | 121 ms
41,112 KB |
testcase_19 | AC | 124 ms
41,360 KB |
testcase_20 | AC | 124 ms
41,472 KB |
testcase_21 | AC | 124 ms
41,112 KB |
testcase_22 | AC | 125 ms
41,188 KB |
testcase_23 | AC | 124 ms
41,204 KB |
testcase_24 | AC | 122 ms
41,484 KB |
testcase_25 | AC | 120 ms
41,176 KB |
testcase_26 | AC | 120 ms
41,216 KB |
testcase_27 | AC | 127 ms
41,348 KB |
testcase_28 | AC | 123 ms
41,248 KB |
testcase_29 | AC | 114 ms
40,016 KB |
testcase_30 | AC | 125 ms
41,088 KB |
testcase_31 | AC | 122 ms
41,220 KB |
testcase_32 | AC | 123 ms
41,456 KB |
testcase_33 | AC | 119 ms
41,272 KB |
testcase_34 | AC | 127 ms
41,108 KB |
testcase_35 | AC | 125 ms
41,512 KB |
testcase_36 | AC | 129 ms
40,948 KB |
testcase_37 | AC | 110 ms
40,196 KB |
testcase_38 | AC | 125 ms
41,584 KB |
testcase_39 | AC | 126 ms
41,204 KB |
testcase_40 | AC | 123 ms
41,204 KB |
testcase_41 | AC | 129 ms
41,308 KB |
testcase_42 | AC | 123 ms
41,232 KB |
testcase_43 | AC | 130 ms
41,112 KB |
testcase_44 | AC | 134 ms
41,304 KB |
testcase_45 | AC | 136 ms
41,488 KB |
testcase_46 | AC | 257 ms
42,932 KB |
ソースコード
package yukicoder; import java.util.*; public class P573 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); long N = sc.nextLong(); final long mod = 1000000007; sc.close(); // fact long[] fact = new long[(int)N+1]; fact[0] = 1; for(int i=1; i<N+1; i++) { fact[i] = (fact[i-1]*i)%mod; } // factInv long[] factInv = new long[(int)N+1]; for(int i=0; i<N+1; i++) { factInv[i] = modpow(fact[i], mod-2, mod); } long ans = 0; for(long m=1; m<=N; m++) { ans = (ans + (((fact[(int)N] * factInv[(int)m])%mod)*factInv[(int)(N-m)] %mod) * modpow(m, N-m, mod) %mod) % mod; } System.out.println(ans); } // print static void print(String s) { System.out.println(s); } // union find lib // usage: // 最初にinitを呼ぶ // root: 直接は呼ばないで // unite: まとめる // same: グループ判定 static void init(int par[], int N) { for(int i=0; i<N; i++) { par[i] = i; } } static int root(int x, int [] par) { if(par[x] == x) { return x; } else { return (par[x] = root(par[x], par)); } } static boolean same(int x, int y, int[] par) { return root(x, par) == root(y, par); } static void unite(int x, int y, int[] par) { x = root(x, par); y = root(y, par); if(x == y) return; par[x] = y; } // end union find lib // number lib static int max(int...ls) { int ans = Integer.MIN_VALUE; for(int i=0; i<ls.length; i++) { ans = Math.max(ans, ls[i]); } return ans; } static int min(int...ls) { int ans = Integer.MAX_VALUE; for(int i=0; i<ls.length; i++) { ans = Math.min(ans, ls[i]); } return ans; } static long lcm(long a, long b) { return a*(b/gcd(a, b)); } static long gcd(long a, long b) { long ta = Math.max(a, b); long tb = Math.min(a, b); long tmp; while((tmp = ta%tb) != 0) { ta = tb; tb = tmp; } return tb; } static long modcomb(long n, long k, long mod) { if(k==1) { return n; } long ans = 1; for(long i=n; i>=n-k+1; i--) { ans = (ans * i)%mod; } for(long i=k; 0<i; i--) { ans = (ans * modpow(i, mod-2, mod)) % mod; } return ans; } static long modpow(long a, long b, long mod) { if(b==0) return 1; if(b%2==0) { long d = modpow(a, b/2, mod); return (d*d)%mod; } else { return (a*modpow(a, b-1, mod))%mod; } } static int disit(long a, long d) { int count = 0; while(a!=0) { a = a/d; count++; } return count; } // end number lib }