結果

問題 No.129 お年玉(2)
ユーザー kuuso1kuuso1
提出日時 2015-01-16 23:47:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 939 ms / 5,000 ms
コード長 1,231 bytes
コンパイル時間 4,449 ms
コンパイル使用メモリ 105,600 KB
実行使用メモリ 34,188 KB
最終ジャッジ日時 2024-11-27 22:58:54
合計ジャッジ時間 31,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
33,936 KB
testcase_01 AC 917 ms
34,072 KB
testcase_02 AC 20 ms
17,644 KB
testcase_03 AC 20 ms
17,388 KB
testcase_04 AC 20 ms
17,548 KB
testcase_05 AC 599 ms
34,020 KB
testcase_06 AC 733 ms
34,168 KB
testcase_07 AC 827 ms
34,060 KB
testcase_08 AC 685 ms
34,164 KB
testcase_09 AC 810 ms
34,176 KB
testcase_10 AC 851 ms
34,172 KB
testcase_11 AC 677 ms
34,156 KB
testcase_12 AC 758 ms
34,044 KB
testcase_13 AC 782 ms
34,168 KB
testcase_14 AC 780 ms
34,172 KB
testcase_15 AC 693 ms
34,024 KB
testcase_16 AC 768 ms
34,040 KB
testcase_17 AC 914 ms
34,180 KB
testcase_18 AC 803 ms
34,172 KB
testcase_19 AC 820 ms
34,044 KB
testcase_20 AC 823 ms
34,188 KB
testcase_21 AC 897 ms
34,060 KB
testcase_22 AC 696 ms
33,908 KB
testcase_23 AC 833 ms
34,184 KB
testcase_24 AC 825 ms
34,184 KB
testcase_25 AC 668 ms
34,036 KB
testcase_26 AC 679 ms
34,012 KB
testcase_27 AC 678 ms
34,152 KB
testcase_28 AC 939 ms
34,068 KB
testcase_29 AC 19 ms
17,664 KB
testcase_30 AC 19 ms
17,484 KB
testcase_31 AC 24 ms
19,072 KB
testcase_32 AC 23 ms
18,944 KB
testcase_33 AC 89 ms
33,664 KB
testcase_34 AC 58 ms
33,792 KB
testcase_35 AC 83 ms
33,408 KB
testcase_36 AC 88 ms
33,664 KB
testcase_37 AC 100 ms
33,796 KB
testcase_38 AC 312 ms
33,928 KB
testcase_39 AC 384 ms
33,948 KB
testcase_40 AC 651 ms
34,024 KB
testcase_41 AC 509 ms
33,956 KB
testcase_42 AC 332 ms
33,960 KB
testcase_43 AC 326 ms
34,076 KB
testcase_44 AC 905 ms
34,076 KB
testcase_45 AC 246 ms
34,052 KB
testcase_46 AC 410 ms
33,956 KB
testcase_47 AC 922 ms
34,072 KB
testcase_48 AC 716 ms
34,164 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
 
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		long rest=(N-N/M/1000*1000*M)/1000;
		if(rest>=M)rest=M;
		
		int[][] nCr=new int[2][];
		nCr[0]=new int[10001];
		nCr[0][0]=1;
		int now=1;int prev=0;
		int mod=(int)1e9;
		for(int i=1;i<=M;i++){
			now=i%2;
			prev=now^1;
			nCr[now]=new int[10001];
			nCr[now][0]=1;
			for(int j=1;j<=10000;j++){
				nCr[now][j]=(nCr[prev][j-1]+nCr[prev][j])%mod;
			}
		}
		Console.WriteLine(nCr[now][rest]);
		
		
		
		
		
	}
	long N,M;
	public Sol(){
		N=rl();M=rl();
	}




	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(){return Console.ReadLine().Split(' ');}
	static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));}
	static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));}
	static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));}
}
0