結果
問題 | No.1191 数え上げを愛したい(数列編) |
ユーザー | fgwiebfaoish |
提出日時 | 2021-05-05 08:53:43 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 68 ms / 2,000 ms |
コード長 | 3,862 bytes |
コンパイル時間 | 1,074 ms |
コンパイル使用メモリ | 115,360 KB |
実行使用メモリ | 32,516 KB |
最終ジャッジ日時 | 2024-09-12 23:14:39 |
合計ジャッジ時間 | 3,112 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
26,876 KB |
testcase_01 | AC | 56 ms
29,948 KB |
testcase_02 | AC | 45 ms
28,468 KB |
testcase_03 | AC | 34 ms
25,212 KB |
testcase_04 | AC | 59 ms
32,440 KB |
testcase_05 | AC | 39 ms
27,308 KB |
testcase_06 | AC | 65 ms
32,052 KB |
testcase_07 | AC | 46 ms
28,592 KB |
testcase_08 | AC | 46 ms
28,416 KB |
testcase_09 | AC | 45 ms
28,408 KB |
testcase_10 | AC | 57 ms
32,516 KB |
testcase_11 | AC | 57 ms
32,236 KB |
testcase_12 | AC | 44 ms
26,616 KB |
testcase_13 | AC | 49 ms
27,008 KB |
testcase_14 | AC | 68 ms
31,784 KB |
testcase_15 | AC | 31 ms
27,104 KB |
testcase_16 | AC | 31 ms
25,212 KB |
testcase_17 | AC | 30 ms
24,696 KB |
testcase_18 | AC | 29 ms
24,480 KB |
testcase_19 | AC | 34 ms
25,904 KB |
testcase_20 | AC | 34 ms
25,848 KB |
testcase_21 | AC | 30 ms
26,996 KB |
testcase_22 | AC | 38 ms
28,828 KB |
testcase_23 | AC | 26 ms
24,112 KB |
testcase_24 | AC | 25 ms
23,804 KB |
testcase_25 | AC | 25 ms
23,800 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Collections; using System.Collections.Specialized; using System.Linq; using System.Text; using System.IO; using System.Reflection; using static System.Math; using System.Numerics; using System.Threading; using System.Runtime.CompilerServices; using System.Diagnostics; //using nint=System.Int32; static class Program{ const int mod=998244353; static void Main(){ Sc sc=new Sc(); var s=sc.Ia; Cb r=new Cb(s[0]+s[3]+1); long ans=0; for(long i = (s[0]-1)*(long)s[2]+1,j=0;i<=s[3]+1;i++,j++) {ans+=(s[1]-i+1)*r.C1(s[0]+j-2,j)%mod*r.r[s[0]]%mod;} Console.WriteLine(ans%mod); } } public class Cb{ private const int mod=998244353; public long[] r,f,v; public Cb(int n){ r=new long[n]; f=new long[n]; v=new long[n]; r[0]=r[1]=f[0]=f[1]=v[1]=1; for(int i=2;i<n;i++){ r[i]=r[i-1]*i%mod; v[i]=mod-v[mod%i]*(mod/i)%mod; f[i]=f[i-1]*v[i]%mod; } } public long C1(long n,long k){return r[n]*(f[k]*f[n-k]%mod)%mod;} public long C2(long n,long k){ long l=1; n%=mod; for(int i=1;i<=k;i++){l=l*(n-i+1)%mod;l=l*v[i]%mod;} return l; } public long C3(long n,long k){return (r[n]*Mi(r[k]*r[n-k]))%mod;} public long P1(long n,long k){return n>=k?r[n]*Mi(r[n-k])%mod:0;} public long Mi(long a){ a=(a+mod)%mod; long b=mod,u=1,v=0; while(b>0){long t=a/b;a-=t*b;(a,b)=(b,a);u-=t*v;(u,v)=(v,u);} u%=mod; if(u<0){u+=mod;} return u%mod; } } public class Sc{ public int I{get{return int.Parse(Console.ReadLine());}} public long L{get{return long.Parse(Console.ReadLine());}} public double D{get{return double.Parse(Console.ReadLine());}} public string S{get{return Console.ReadLine();}} public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}} public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}} public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}} public string[] Sa{get{return Console.ReadLine().Split();}} public object[] Oa{get{return Console.ReadLine().Split();}} public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}} public int[] Ia3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),int.Parse);} public int[] Ia3(int a){return Array.ConvertAll((Console.ReadLine()+" "+a.ToString()).Split(),int.Parse);} public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}} public long[] La3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),long.Parse);} public long[] La3(int a){return Array.ConvertAll((Console.ReadLine()+" "+a.ToString()).Split(),long.Parse);} public double[] Da2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),double.Parse);}} public double[] Da3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),double.Parse);} public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;} public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;} public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;} public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;} public (T,T) Tp2<T>(){var s=Console.ReadLine().Split();return (Ct<T>(s[0]),Ct<T>(s[1]));} public (T1,T2) Tp2<T1,T2>(){var s=Console.ReadLine().Split();return (Ct<T1>(s[0]),Ct<T2>(s[1]));} public (T,T,T) Tp3<T>(){var s=Console.ReadLine().Split();return (Ct<T>(s[0]),Ct<T>(s[1]),Ct<T>(s[2]));} public (T1,T1,T2) Tp3<T1,T2>(){var s=Console.ReadLine().Split();return (Ct<T1>(s[0]),Ct<T1>(s[1]),Ct<T2>(s[2]));} private T Ct<T>(string s){return (T)Convert.ChangeType(s,typeof(T));} }