結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-19 22:05:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,213 bytes
コンパイル時間 2,276 ms
コンパイル使用メモリ 77,756 KB
実行使用メモリ 75,472 KB
最終ジャッジ日時 2024-07-20 06:37:43
合計ジャッジ時間 36,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 132 ms
41,076 KB
testcase_02 AC 135 ms
41,276 KB
testcase_03 AC 134 ms
41,216 KB
testcase_04 WA -
testcase_05 AC 136 ms
41,200 KB
testcase_06 AC 137 ms
41,056 KB
testcase_07 AC 133 ms
41,112 KB
testcase_08 AC 136 ms
40,956 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 904 ms
61,620 KB
testcase_50 AC 281 ms
46,968 KB
testcase_51 AC 274 ms
47,184 KB
testcase_52 AC 469 ms
48,048 KB
testcase_53 AC 324 ms
47,604 KB
testcase_54 AC 537 ms
48,228 KB
testcase_55 AC 204 ms
43,540 KB
testcase_56 AC 303 ms
47,500 KB
testcase_57 AC 665 ms
50,928 KB
testcase_58 AC 801 ms
60,728 KB
testcase_59 AC 759 ms
55,044 KB
testcase_60 AC 553 ms
48,632 KB
testcase_61 AC 1,021 ms
64,052 KB
testcase_62 AC 576 ms
48,888 KB
testcase_63 AC 812 ms
60,408 KB
testcase_64 AC 508 ms
48,464 KB
testcase_65 AC 361 ms
46,640 KB
testcase_66 AC 571 ms
49,020 KB
testcase_67 AC 519 ms
48,508 KB
testcase_68 AC 511 ms
48,320 KB
testcase_69 AC 139 ms
41,420 KB
testcase_70 AC 141 ms
41,192 KB
testcase_71 AC 133 ms
40,988 KB
testcase_72 AC 132 ms
41,088 KB
testcase_73 AC 131 ms
41,072 KB
testcase_74 AC 139 ms
41,196 KB
testcase_75 AC 136 ms
41,080 KB
testcase_76 AC 136 ms
41,300 KB
testcase_77 AC 138 ms
41,292 KB
testcase_78 AC 137 ms
41,268 KB
testcase_79 AC 134 ms
41,284 KB
testcase_80 AC 135 ms
41,052 KB
testcase_81 AC 134 ms
41,208 KB
testcase_82 AC 139 ms
41,216 KB
testcase_83 AC 125 ms
40,076 KB
testcase_84 AC 138 ms
41,348 KB
testcase_85 AC 138 ms
41,400 KB
testcase_86 AC 138 ms
41,080 KB
testcase_87 AC 133 ms
41,532 KB
testcase_88 AC 135 ms
41,276 KB
testcase_89 WA -
testcase_90 WA -
testcase_91 WA -
testcase_92 WA -
testcase_93 WA -
testcase_94 WA -
testcase_95 WA -
testcase_96 WA -
testcase_97 WA -
testcase_98 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static long MOD = (long)Math.pow(10, 9) + 7;
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long m = sc.nextLong();
    ArrayList<Long> h = new ArrayList<Long>();
    long sum = 0;
    for(int i = 0; i < 1000000; i++) {
      try {
        long t = sc.nextLong();
        sum += t;
        h.add(t);
      } catch(Exception e) {
        break;
      }
    }
    long k = h.size();
    sum += (k - 1);
    long ans = 1;
    if(h.get(0) != 0) {
      if(sum > m) {
        System.out.println("NA");
      } else {
        long t = m - sum;
        long r1 = 1;
        long r2 = 1;
        for(long i = 1; i <= k; i++) {
          r1 = (r1 * (t + i)) % MOD;
          r2 = (r2 * i) % MOD;
        }
        long r3 = func(r2, MOD - 2);
        ans = (r1 * r3) % MOD;
        System.out.println(ans);
      }
    } else {
      System.out.println(1);      
    }
  }

  public static long func(long a, long x) {
    if(x == 1) return 1;
    if(x % 2 == 0) {
      long t = func(a, x / 2);
      return (t * t) % MOD;
    } else {
      long t = func(a, x / 2);
      t = (t * t) % MOD;
      return (a * t) % MOD;
    }
  }
}
0