結果

問題 No.129 お年玉(2)
ユーザー kuuso1kuuso1
提出日時 2015-01-16 23:47:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 953 ms / 5,000 ms
コード長 1,231 bytes
コンパイル時間 1,646 ms
コンパイル使用メモリ 106,880 KB
実行使用メモリ 34,072 KB
最終ジャッジ日時 2024-05-05 21:36:52
合計ジャッジ時間 30,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
33,672 KB
testcase_01 AC 953 ms
33,948 KB
testcase_02 AC 20 ms
17,512 KB
testcase_03 AC 19 ms
17,652 KB
testcase_04 AC 20 ms
17,640 KB
testcase_05 AC 605 ms
34,004 KB
testcase_06 AC 765 ms
33,892 KB
testcase_07 AC 855 ms
34,056 KB
testcase_08 AC 714 ms
33,896 KB
testcase_09 AC 828 ms
34,048 KB
testcase_10 AC 886 ms
34,056 KB
testcase_11 AC 718 ms
33,908 KB
testcase_12 AC 790 ms
34,036 KB
testcase_13 AC 816 ms
34,040 KB
testcase_14 AC 802 ms
33,788 KB
testcase_15 AC 715 ms
34,016 KB
testcase_16 AC 757 ms
33,908 KB
testcase_17 AC 833 ms
33,808 KB
testcase_18 AC 813 ms
33,920 KB
testcase_19 AC 858 ms
33,788 KB
testcase_20 AC 841 ms
33,924 KB
testcase_21 AC 931 ms
33,956 KB
testcase_22 AC 692 ms
33,908 KB
testcase_23 AC 894 ms
33,676 KB
testcase_24 AC 853 ms
33,928 KB
testcase_25 AC 686 ms
33,896 KB
testcase_26 AC 698 ms
33,904 KB
testcase_27 AC 675 ms
33,768 KB
testcase_28 AC 947 ms
33,940 KB
testcase_29 AC 20 ms
17,536 KB
testcase_30 AC 20 ms
17,408 KB
testcase_31 AC 24 ms
18,688 KB
testcase_32 AC 23 ms
18,816 KB
testcase_33 AC 95 ms
33,536 KB
testcase_34 AC 64 ms
33,536 KB
testcase_35 AC 85 ms
33,664 KB
testcase_36 AC 95 ms
33,536 KB
testcase_37 AC 100 ms
33,676 KB
testcase_38 AC 321 ms
33,944 KB
testcase_39 AC 407 ms
33,840 KB
testcase_40 AC 654 ms
34,008 KB
testcase_41 AC 539 ms
33,980 KB
testcase_42 AC 348 ms
33,696 KB
testcase_43 AC 340 ms
33,948 KB
testcase_44 AC 941 ms
34,068 KB
testcase_45 AC 256 ms
33,812 KB
testcase_46 AC 412 ms
33,832 KB
testcase_47 AC 918 ms
34,072 KB
testcase_48 AC 712 ms
33,900 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