結果

問題 No.1111 コード進行
ユーザー ngtkanangtkana
提出日時 2020-03-11 00:03:57
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,245 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 113,100 KB
実行使用メモリ 48,048 KB
最終ジャッジ日時 2024-11-15 23:51:37
合計ジャッジ時間 5,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
18,944 KB
testcase_01 AC 31 ms
19,200 KB
testcase_02 AC 30 ms
19,072 KB
testcase_03 AC 30 ms
19,072 KB
testcase_04 AC 31 ms
19,072 KB
testcase_05 AC 31 ms
19,456 KB
testcase_06 AC 34 ms
20,480 KB
testcase_07 AC 35 ms
20,096 KB
testcase_08 AC 33 ms
19,060 KB
testcase_09 AC 34 ms
19,456 KB
testcase_10 AC 36 ms
21,120 KB
testcase_11 AC 32 ms
19,124 KB
testcase_12 AC 38 ms
22,336 KB
testcase_13 AC 33 ms
25,704 KB
testcase_14 AC 41 ms
27,120 KB
testcase_15 AC 32 ms
27,060 KB
testcase_16 AC 39 ms
28,724 KB
testcase_17 AC 34 ms
27,236 KB
testcase_18 AC 33 ms
26,940 KB
testcase_19 AC 32 ms
24,748 KB
testcase_20 AC 33 ms
25,444 KB
testcase_21 AC 32 ms
25,008 KB
testcase_22 AC 38 ms
28,264 KB
testcase_23 AC 34 ms
27,568 KB
testcase_24 AC 34 ms
25,960 KB
testcase_25 AC 44 ms
28,132 KB
testcase_26 WA -
testcase_27 AC 33 ms
25,024 KB
testcase_28 AC 75 ms
43,788 KB
testcase_29 AC 54 ms
43,220 KB
testcase_30 WA -
testcase_31 AC 37 ms
29,896 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 57 ms
45,028 KB
testcase_35 AC 74 ms
45,864 KB
testcase_36 AC 185 ms
41,588 KB
testcase_37 AC 71 ms
37,296 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 94 ms
35,976 KB
testcase_42 AC 98 ms
35,328 KB
testcase_43 WA -
testcase_44 AC 50 ms
29,440 KB
testcase_45 AC 85 ms
35,584 KB
testcase_46 WA -
testcase_47 AC 325 ms
25,600 KB
testcase_48 AC 32 ms
19,712 KB
testcase_49 AC 32 ms
19,456 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.Linq;

static class NagataKanaIsAGenius {
    public static void Main() {
        int[]qmk=Console.ReadLine().Split().Select(int.Parse).ToArray();
        int q=qmk[0];
        int m=qmk[1];
        int k=qmk[2];
        int n=0;
        (int,int,int)[]prog=Enumerable.Range(0,m).Select(_=>{
            int[]uvw=Console.ReadLine().Split().Select(int.Parse).ToArray();
            int u=uvw[0]-1;
            int v=uvw[1]-1;
            int w=uvw[2];
            if(n<u)n=u;
            if(n<v)n=v;
            return (u,v,w);
        }).ToArray();
        n++;
        int[]dp=new int[(k+1)*n];
        for(int i=0;i<n;i++)dp[i]=1;
        for(int i=0;i<q-1;i++){
            int[]new_dp=new int[(k+1)*n];
            for(int j=k;j>=0;j--){
                foreach((int u,int v,int w)in prog){
                    if(w<=j){
                        AddAssign(ref new_dp[j*n+u],dp[(j-w)*n+v]);
                    }
                }
            }
            dp=new_dp;
        }
        int ans=0;
        for(int i=0;i<n;i++){
            AddAssign(ref ans,dp[k*n+i]);
        }
        Console.WriteLine(ans);
    }
    static int Mod=100000007;
    static void AddAssign(ref int x,int y){x+=y;if(Mod<=x)x-=Mod;}
}
0